fix agenda

This commit is contained in:
Peter Maquiran
2023-03-30 15:22:40 +01:00
parent b7d878851e
commit 936878f6cd
6 changed files with 46 additions and 29 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ export class CalendarService {
let result = [];
for (const calendar of ids) {
const events = this._eventSource.filter(e => e.CalendarId == calendar.calendarId)
const events = this._eventSource.filter(e => e.CalendarId == calendar.CalendarId)
result = result.concat(events)
}