feat: sort note cell tags alphabetically (#848)
This commit is contained in:
@@ -45,7 +45,7 @@ export const NotesList: FunctionComponent<Props> = observer(
|
||||
if (!selectedTag.isSmartTag && tags.length === 1) {
|
||||
return [];
|
||||
}
|
||||
return tags.map((tag) => tag.title);
|
||||
return tags.map((tag) => tag.title).sort();
|
||||
};
|
||||
|
||||
const openNoteContextMenu = (posX: number, posY: number) => {
|
||||
|
||||
Reference in New Issue
Block a user