From 5e1978e29fe5a98985604833257274d426fa0d49 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Fri, 8 May 2020 14:50:48 -0700 Subject: [PATCH] Ensure ipynb is associated with editor (#10055) --- .../contrib/notebook/browser/models/nodebookInputFactory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/contrib/notebook/browser/models/nodebookInputFactory.ts b/src/sql/workbench/contrib/notebook/browser/models/nodebookInputFactory.ts index de4f24d1ed..513c19af55 100644 --- a/src/sql/workbench/contrib/notebook/browser/models/nodebookInputFactory.ts +++ b/src/sql/workbench/contrib/notebook/browser/models/nodebookInputFactory.ts @@ -17,7 +17,7 @@ import { NotebookInput } from 'sql/workbench/contrib/notebook/browser/models/not const editorInputFactoryRegistry = Registry.as(EditorInputExtensions.EditorInputFactories); export class NotebookEditorInputAssociation implements ILanguageAssociation { - static readonly languages = ['notebook']; + static readonly languages = ['notebook', 'ipynb']; constructor(@IInstantiationService private readonly instantiationService: IInstantiationService) { }