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 92c2bd0 commit 82d4b71Copy full SHA for 82d4b71
src/vs/workbench/contrib/interactive/browser/interactiveEditorInput.ts
@@ -188,7 +188,7 @@ export class InteractiveEditorInput extends EditorInput implements ICompositeNot
188
}
189
190
const filename = this.getName() + '.ipynb';
191
- const pathCandidate = joinPath(await this._fileDialogService.defaultFilePath(), 'scratch.ipynb');
+ const pathCandidate = joinPath(await this._fileDialogService.defaultFilePath(), filename);
192
193
const target = await this._fileDialogService.pickFileToSave(pathCandidate, options?.availableFileSystems);
194
if (!target) {
0 commit comments