calendar duplicate event fix

This commit is contained in:
Yuri Kuznetsov
2024-04-30 14:14:55 +03:00
parent bfed154feb
commit 71dd872618
@@ -1197,7 +1197,8 @@ class CalendarView extends View {
const event = this.convertToFcEvent(attributes);
this.calendar.addEvent(event);
// true passed to prevent duplicates after re-fetch.
this.calendar.addEvent(event, true);
}
updateModel(model) {