This commit is contained in:
dhain 2022-10-11 11:09:09 +02:00
parent 7abdbe605b
commit cdefc2e993
4 changed files with 6 additions and 12 deletions

View file

@ -8,6 +8,9 @@
onMount(async () => {
notes = await noteRepo.getNotes();
notes.forEach(note => {
note.lastViewed = new Date(note.lastViewed);
});
});
/**