feat: get sorted tags for note

This commit is contained in:
Antonella Sgarlatta
2021-05-25 19:57:14 -03:00
parent fe9587b271
commit 237a64c322

View File

@@ -158,7 +158,7 @@ export class NotesState {
reloadActiveNoteTags(): void {
const { activeNote } = this;
if (activeNote) {
this.activeNoteTags = this.application.getAppState().getNoteTags(activeNote);
this.activeNoteTags = this.application.getSortedTagsForNote(activeNote)
}
}