fix the check (#14529)

This commit is contained in:
Maddy
2021-03-03 11:28:12 -08:00
committed by GitHub
parent cea55560e8
commit ae55da3c35

View File

@@ -122,7 +122,7 @@ export class NotebookEditorModel extends EditorModel {
this._isFirstKernelChange = false;
return;
}
if (!contentChange?.isDirty === false) {
if (contentChange?.isDirty === false) {
return;
}
this._lastEditFullReplacement = false;