Add 'Show dates' setting to toggle the note-list date

This commit is contained in:
Yuri Karamian
2026-06-08 01:00:25 +02:00
parent a400eeefed
commit 6115ad4ab6
6 changed files with 25 additions and 4 deletions
+2
View File
@@ -225,6 +225,7 @@ export async function setGeneralSettings(
showTrayIcon: boolean,
closeToTray: boolean,
enableWikiLinks: boolean,
showNoteDates: boolean,
): Promise<void> {
return invoke("set_general_settings", {
compactNotes,
@@ -240,6 +241,7 @@ export async function setGeneralSettings(
showTrayIcon,
closeToTray,
enableWikiLinks,
showNoteDates,
});
}