Skip to content

Commit 82d4b71

Browse files
committed
actually use it
1 parent 92c2bd0 commit 82d4b71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/interactive/browser/interactiveEditorInput.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export class InteractiveEditorInput extends EditorInput implements ICompositeNot
188188
}
189189

190190
const filename = this.getName() + '.ipynb';
191-
const pathCandidate = joinPath(await this._fileDialogService.defaultFilePath(), 'scratch.ipynb');
191+
const pathCandidate = joinPath(await this._fileDialogService.defaultFilePath(), filename);
192192

193193
const target = await this._fileDialogService.pickFileToSave(pathCandidate, options?.availableFileSystems);
194194
if (!target) {

0 commit comments

Comments
 (0)