fix: issue when creating new note in new tag doesnt re-render immediately

This commit is contained in:
Mo
2022-01-12 11:42:36 -06:00
parent 8f4f188733
commit a2b2d3f0bb
3 changed files with 19 additions and 2 deletions

View File

@@ -333,9 +333,14 @@ export class NotesViewState {
if (this.isFiltering) {
title = this.noteFilterText;
}
await this.appState.openNewNote(title);
this.reloadNotes();
this.appState.noteTags.reloadTags();
this.application.performFunctionWithAngularDigestCycleAfterAsyncChange(
() => {
this.reloadNotes();
this.appState.noteTags.reloadTags();
}
);
};
createPlaceholderNote = () => {