Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit 5b707df

Browse files
authored
side bar fix (#98)
* sidebar fix
1 parent d2a37c7 commit 5b707df

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"icon": "media/lightningflow.png",
1111
"description": "A VSCode Extension designed to pinpoint deviations from Industry Best Practices in Salesforce Flows, ensuring standards of business automation excellence.",
12-
"version": "3.11.0",
12+
"version": "3.14.0",
1313
"engines": {
1414
"vscode": "^1.83.1"
1515
},

src/panels/SidebarPanel.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,12 @@ export class Sidebar implements vscode.WebviewViewProvider {
3535
const styleVSCodeUri = webview.asWebviewUri(
3636
vscode.Uri.joinPath(this._extensionUri, "media", "vscode.css")
3737
);
38-
3938
const scriptUri = webview.asWebviewUri(
40-
vscode.Uri.joinPath(this._extensionUri, "out", "compiled", "Sidebar.js")
41-
);
42-
const styleMainUri = webview.asWebviewUri(
43-
vscode.Uri.joinPath(this._extensionUri, "out", "compiled", "Sidebar.css")
44-
);
39+
vscode.Uri.joinPath(this._extensionUri, "out/compiled", "sidebar.js")
40+
);
41+
const styleMainUri = webview.asWebviewUri(
42+
vscode.Uri.joinPath(this._extensionUri, "out/compiled", "sidebar.css")
43+
);
4544
const nonce = uuid.v4();
4645
return `<!DOCTYPE html>
4746
<html lang="en">

0 commit comments

Comments
 (0)