Skip to content

Commit

Permalink
Action icon buttons code path correction (#747)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyaginidhi committed Oct 19, 2023
1 parent 7d574cd commit 3f76882
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/web/client/webViews/powerPagesNavigationProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ export class PowerPagesNode extends vscode.TreeItem {

getIconPath(svgFileName: string) {
return {
light: vscode.Uri.joinPath(WebExtensionContext.extensionUri, '..', '..', 'src', 'web', 'client', 'assets', svgFileName),
dark: vscode.Uri.joinPath(WebExtensionContext.extensionUri, '..', '..', 'src', 'web', 'client', 'assets', svgFileName)
light: vscode.Uri.joinPath(WebExtensionContext.extensionUri, 'src', 'web', 'client', 'assets', svgFileName),
dark: vscode.Uri.joinPath(WebExtensionContext.extensionUri, 'src', 'web', 'client', 'assets', svgFileName)
};
}
}
}

0 comments on commit 3f76882

Please sign in to comment.