mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
fix edited notes ribbon widget
This commit is contained in:
parent
e003341dff
commit
e74979ccc1
@ -120,7 +120,8 @@ function getEditedNotesOnDate(req) {
|
||||
ORDER BY isDeleted
|
||||
LIMIT 50`, {date: req.params.date + '%'});
|
||||
|
||||
const notes = becca.getNotes(noteIds, true);
|
||||
const notes = becca.getNotes(noteIds, true)
|
||||
.map(note => note.getPojo());
|
||||
|
||||
for (const note of notes) {
|
||||
const notePath = note.isDeleted ? null : beccaService.getNotePath(note.noteId);
|
||||
|
Loading…
x
Reference in New Issue
Block a user