From 8bf21c0e9d707f47a80a4e490341e6bdb3553e5c Mon Sep 17 00:00:00 2001 From: lastminutediorama Date: Wed, 21 Aug 2024 10:59:51 -0500 Subject: [PATCH] regroup vars --- src/interface/src/app/plan/area-notes/area-notes.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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