diff --git a/.changeset/salty-geese-relate.md b/.changeset/salty-geese-relate.md new file mode 100644 index 0000000000..5a55e5eb49 --- /dev/null +++ b/.changeset/salty-geese-relate.md @@ -0,0 +1,5 @@ +--- +"roo-cline": patch +--- + +Fix vscode-material-icons path diff --git a/src/core/webview/ClineProvider.ts b/src/core/webview/ClineProvider.ts index 0155ce914f..1bd57e2b5b 100644 --- a/src/core/webview/ClineProvider.ts +++ b/src/core/webview/ClineProvider.ts @@ -573,7 +573,11 @@ export class ClineProvider extends EventEmitter implements ]) const codiconsUri = getUri(webview, this.contextProxy.extensionUri, ["assets", "codicons", "codicon.css"]) - const materialIconsUri = getUri(webview, this.contextProxy.extensionUri, ["assets", "vscode-material-icons"]) + const materialIconsUri = getUri(webview, this.contextProxy.extensionUri, [ + "assets", + "vscode-material-icons", + "icons", + ]) const imagesUri = getUri(webview, this.contextProxy.extensionUri, ["assets", "images"]) const audioUri = getUri(webview, this.contextProxy.extensionUri, ["webview-ui", "audio"]) @@ -650,7 +654,11 @@ export class ClineProvider extends EventEmitter implements const scriptUri = getUri(webview, this.contextProxy.extensionUri, ["webview-ui", "build", "assets", "index.js"]) const codiconsUri = getUri(webview, this.contextProxy.extensionUri, ["assets", "codicons", "codicon.css"]) - const materialIconsUri = getUri(webview, this.contextProxy.extensionUri, ["assets", "vscode-material-icons"]) + const materialIconsUri = getUri(webview, this.contextProxy.extensionUri, [ + "assets", + "vscode-material-icons", + "icons", + ]) const imagesUri = getUri(webview, this.contextProxy.extensionUri, ["assets", "images"]) const audioUri = getUri(webview, this.contextProxy.extensionUri, ["webview-ui", "audio"])