Merge branch 'develop' of ssh://github.com/TriliumNext/Notes into develop

This commit is contained in:
Elian Doran
2025-02-28 19:03:19 +02:00
3 changed files with 341 additions and 226 deletions

View File

@@ -48,8 +48,6 @@ async function buildNotes(notes: NoteDefinition[]) {
position++;
}
console.log("Attributes", note.getOwnedAttributes());
}
return ids;
@@ -107,7 +105,7 @@ describe("Building events", () => {
const FNote = (await import("../../entities/fnote.js")).default;
const froca = (await import("../../services/froca.js"));
const CalendarView = (await import("./calendar_view.js")).default;
const events = CalendarView.buildEvents(noteIds);
const events = await CalendarView.buildEvents(noteIds);
console.log(noteIds, events);
});