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 3178224 commit f42cf9aCopy full SHA for f42cf9a
src/vs/workbench/contrib/notebook/common/notebookEditorInput.ts
@@ -159,7 +159,7 @@ export class NotebookEditorInput extends AbstractResourceEditorInput {
159
override isSaving(): boolean {
160
const model = this._editorModelReference?.object;
161
if (!model || !model.isDirty() || model.hasErrorState || model.hasConflictState) {
162
- return false; // require the model to be dirty and not in error of conflict state
+ return false; // require the model to be dirty and not in error or conflict state
163
}
164
165
// if a short auto save is configured, treat this as being saved
0 commit comments