Skip to content

Commit

Permalink
fix: fix color icons loading
Browse files Browse the repository at this point in the history
  • Loading branch information
tpucci authored and fake-join[bot] committed Nov 28, 2023
1 parent 3083018 commit 5ed5163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bpmn-editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ export class BpmnEditor implements vscode.CustomEditorProvider<BpmnDocument> {
Use a content security policy to only allow loading images from https or from our extension directory,
and only allow scripts that have a specific nonce.
-->
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; font-src 'self' data:; img-src ${webview.cspSource} blob:; style-src ${webview.cspSource}; script-src 'nonce-${nonce}';">
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; font-src 'self' data:; img-src 'self' data:; img-src ${webview.cspSource} blob:; style-src ${webview.cspSource}; script-src 'nonce-${nonce}';">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Expand Down

0 comments on commit 5ed5163

Please sign in to comment.