mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix vscode-material-icons path (#3889)
This commit is contained in:
parent
82701584ae
commit
b9d3331f41
2 changed files with 15 additions and 2 deletions
5
.changeset/salty-geese-relate.md
Normal file
5
.changeset/salty-geese-relate.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"roo-cline": patch
|
||||
---
|
||||
|
||||
Fix vscode-material-icons path
|
||||
|
|
@ -573,7 +573,11 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> 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<ClineProviderEvents> 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"])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue