diff --git a/src/interface/src/app/plan/area-notes/area-notes.component.ts b/src/interface/src/app/plan/area-notes/area-notes.component.ts index 9818a0554..85ced99a6 100644 --- a/src/interface/src/app/plan/area-notes/area-notes.component.ts +++ b/src/interface/src/app/plan/area-notes/area-notes.component.ts @@ -23,6 +23,7 @@ export class AreaNotesComponent implements OnInit { @Input() plan!: Plan; notes: Note[] = []; note = ''; + saving = false; ngOnInit() { this.loadNotes(); @@ -34,8 +35,6 @@ export class AreaNotesComponent implements OnInit { .subscribe((notes) => (this.notes = notes)); } - saving = false; - openDeleteNoteDialog(note: Note) { const dialogRef = this.dialog.open(DeleteNoteDialogComponent, {}); dialogRef