We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afd71d8 commit 633eec6Copy full SHA for 633eec6
src/vs/workbench/contrib/notebook/browser/view/renderers/webviewPreloads.ts
@@ -1641,7 +1641,7 @@ async function webviewPreloads(ctx: PreloadContext) {
1641
1642
const error = document.createElement('div');
1643
error.className = 'no-renderer-error';
1644
- const errorText = (document.documentElement.style.getPropertyValue('--notebook-cell-renderer-not-found-error') || '').replace('$0', info.mime);
+ const errorText = (document.documentElement.style.getPropertyValue('--notebook-cell-renderer-not-found-error') || '').replace('$0', () => info.mime);
1645
error.innerText = errorText;
1646
1647
const cellText = document.createElement('div');
0 commit comments