Skip to content
Snippets Groups Projects
Commit fdac5a0c authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #14944 TIME 0:30 fix isModified

(cherry picked from commit d47f2f0a)
parent 8a24c292
No related branches found
No related tags found
No related merge requests found
...@@ -101,7 +101,7 @@ export class NotesListComponent implements OnInit { ...@@ -101,7 +101,7 @@ export class NotesListComponent implements OnInit {
} }
isModified() { isModified() {
return this.noteEditor === undefined || this.noteEditor.isWritingNote(); return this.noteEditor === undefined ? false : this.noteEditor.isWritingNote();
} }
addNote() { addNote() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment