Note and task ui fixes
CI / build (push) Has been skipped
CI / deploy (push) Failing after 50s

This commit is contained in:
2026-03-12 18:49:01 -05:00
parent 55047b5d90
commit bb0fe6c749
3 changed files with 63 additions and 49 deletions
+5 -1
View File
@@ -64,7 +64,11 @@ export const NotesSidebar: Component<{
n = n.filter(note => note.tags?.includes(getFavoriteTag()));
}
return n;
return n.sort((a, b) => {
const titleA = a.title || "Untitled";
const titleB = b.title || "Untitled";
return titleB.localeCompare(titleA);
});
});
const handleCreateNote = async () => {