Skip to content

Commit

Permalink
feat: get sorted tags for note
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonella Sgarlatta committed May 25, 2021
1 parent fe9587b commit 237a64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/javascripts/ui_models/app_state/notes_state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit 237a64c

Please sign in to comment.