Skip to content

Commit

Permalink
Merge pull request #1081 from pmcelhaney/fix-vscode-link-on-windows
Browse files Browse the repository at this point in the history
fix vscode link on windows - fixes #1058
  • Loading branch information
pmcelhaney authored Oct 15, 2024
2 parents 9312ec5 + b5578b5 commit eedffe7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/purple-boats-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"counterfact": patch
---

fix vscode:// links on Windows (#1058)
2 changes: 1 addition & 1 deletion src/client/index.html.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ it up later. In the mean time, I welcome pull requests. :)
<td class="method-identifier" title="{{route.methods.PUT}}">{{#if route.methods.PUT }}⚪️{{/if}}</td>
<td class="method-identifier" title="{{route.methods.DELETE}}">{{#if route.methods.DELETE }}⚪️{{/if}}</td>
<td class="method-identifier" title="{{route.methods.PATH}}">{{#if route.methods.PATCH }}⚪️{{/if}}</td>
<td class="path"><a href="vscode://file{{../basePath}}/routes{{route.path}}.ts">{{route.path}}</a></td>
<td class="path"><a href="vscode://file/{{../basePath}}/routes{{route.path}}.ts">{{route.path}}</a></td>
</tr>
{{/each}}
</tbody>
Expand Down

0 comments on commit eedffe7

Please sign in to comment.