Skip to content

Commit f42cf9a

Browse files
authored
fix comment
1 parent 3178224 commit f42cf9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/notebook/common/notebookEditorInput.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export class NotebookEditorInput extends AbstractResourceEditorInput {
159159
override isSaving(): boolean {
160160
const model = this._editorModelReference?.object;
161161
if (!model || !model.isDirty() || model.hasErrorState || model.hasConflictState) {
162-
return false; // require the model to be dirty and not in error of conflict state
162+
return false; // require the model to be dirty and not in error or conflict state
163163
}
164164

165165
// if a short auto save is configured, treat this as being saved

0 commit comments

Comments
 (0)