diff --git a/src/sql/parts/notebook/notebook.component.ts b/src/sql/parts/notebook/notebook.component.ts index 51937c8b22..86cb4248dd 100644 --- a/src/sql/parts/notebook/notebook.component.ts +++ b/src/sql/parts/notebook/notebook.component.ts @@ -391,7 +391,10 @@ export class NotebookComponent extends AngularDisposable implements OnInit, OnDe } promptForPath(defaultPath: string): TPromise { - return this.windowService.showSaveDialog({ defaultPath }); + return this.windowService.showSaveDialog({ + defaultPath: defaultPath, + filters: [{ name: localize('notebookFile', 'Notebook'), extensions: ['ipynb']}] + }); } // Entry point to save notebook