fix(collections/calendar): displaying deep children (closes #7944)

This commit is contained in:
Elian Doran
2026-04-10 22:17:55 +03:00
parent 05da2d7a50
commit e29555a89b

View File

@@ -75,7 +75,7 @@ export async function buildEventsForCalendar(note: FNote, e: EventSourceFuncArg)
if (dateNote.hasChildren()) {
const childNoteIds = await dateNote.getSubtreeNoteIds();
const childNoteIds = dateNote.getChildNoteIds();
for (const childNoteId of childNoteIds) {
childNoteToDateMapping[childNoteId] = startDate;
}