Skip to content

Commit

Permalink
fix: use consistent slash in projects tree (#1584)
Browse files Browse the repository at this point in the history
  • Loading branch information
kermanx authored May 10, 2024
1 parent 5d0fe4a commit 655b2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vscode/src/views/projectsTree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function getTreeItem(element: SlidevProject | string): TreeItem {
if (typeof element === 'string') {
// Imported file
return {
description: true,
description: toRelativePath(element),
resourceUri: Uri.file(element),
iconPath: new ThemeIcon('file'),
collapsibleState: TreeItemCollapsibleState.None,
Expand Down

0 comments on commit 655b2c9

Please sign in to comment.