@acorex/core 20.1.4 → 20.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1063,7 +1063,7 @@ class AXCalendarService {
|
|
1063
1063
|
return this.activeCalendar.getValue();
|
1064
1064
|
}
|
1065
1065
|
setActiveCalendar(name) {
|
1066
|
-
if (name != this.calendar
|
1066
|
+
if (name != this.calendar?.name()) {
|
1067
1067
|
const calendar = this.resolveCalendar(name);
|
1068
1068
|
this.activeCalendar.next(calendar);
|
1069
1069
|
this.eventService.emitEvent({
|