From 07d98f764dfebee298c876cd8d62238ced1ecc07 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Tue, 23 Jun 2020 11:32:09 -0500 Subject: [PATCH] Fix bad notebook template value --- src/vs/workbench/contrib/notebook/browser/notebookEditor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts b/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts index 53c6a724f35..265929d9460 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts @@ -142,7 +142,7 @@ export class NotebookEditor extends BaseEditor { if (model === null) { this._notificationService.prompt( Severity.Error, - localize('fail.noEditor', "Cannot open resource with notebook editor type '${input.viewType}', please check if you have the right extension installed or enabled."), + localize('fail.noEditor', "Cannot open resource with notebook editor type '{0}', please check if you have the right extension installed or enabled.", input.viewType), [{ label: localize('fail.reOpen', "Reopen file with VS Code standard text editor"), run: async () => {