Skip to content

Commit

Permalink
regroup vars
Browse files Browse the repository at this point in the history
  • Loading branch information
lastminutediorama committed Aug 21, 2024
1 parent cbe8d39 commit 8bf21c0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export class AreaNotesComponent implements OnInit {
@Input() plan!: Plan;
notes: Note[] = [];
note = '';
saving = false;

ngOnInit() {
this.loadNotes();
Expand All @@ -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
Expand Down

0 comments on commit 8bf21c0

Please sign in to comment.