Skip to content

Commit

Permalink
Fix CSS file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
charisk authored and shati-patel committed Dec 17, 2021
1 parent c01704b commit e1b35cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extensions/ql-vscode/src/compare/compare-interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export class CompareInterfaceManager extends DisposableObject {
);

const stylesheetPathOnDisk = Uri.file(
ctx.asAbsolutePath('out/resultsView.css')
ctx.asAbsolutePath('out/view/resultsView.css')
);

panel.webview.html = getHtmlForWebview(
Expand Down
2 changes: 1 addition & 1 deletion extensions/ql-vscode/src/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export class InterfaceManager extends DisposableObject {
ctx.asAbsolutePath('out/resultsView.js')
);
const stylesheetPathOnDisk = vscode.Uri.file(
ctx.asAbsolutePath('out/resultsView.css')
ctx.asAbsolutePath('out/view/resultsView.css')
);
panel.webview.html = getHtmlForWebview(
panel.webview,
Expand Down

0 comments on commit e1b35cd

Please sign in to comment.