mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Various minor JS errors in calendar_default_view.js
This commit is contained in:
parent
71474a7d94
commit
81e202342e
1 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ App.Utils.CalendarDefaultView = (function () {
|
||||||
$popoverTarget.popover('dispose');
|
$popoverTarget.popover('dispose');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lastFocusedEventData.extendedProps.data.workingPlanException) {
|
if (lastFocusedEventData.extendedProps.data.workingPlanException !== undefined) {
|
||||||
const providerId = $selectFilterItem.val();
|
const providerId = $selectFilterItem.val();
|
||||||
|
|
||||||
const provider = vars('available_providers').find(
|
const provider = vars('available_providers').find(
|
||||||
|
@ -1256,7 +1256,7 @@ App.Utils.CalendarDefaultView = (function () {
|
||||||
calendarEventSource.push(unavailabilityEvent);
|
calendarEventSource.push(unavailabilityEvent);
|
||||||
});
|
});
|
||||||
|
|
||||||
response.blocked_periods.forEach((blockedPeriod) => {
|
response?.blocked_periods?.forEach((blockedPeriod) => {
|
||||||
const blockedPeriodEvent = {
|
const blockedPeriodEvent = {
|
||||||
title: blockedPeriod.name,
|
title: blockedPeriod.name,
|
||||||
start: moment(blockedPeriod.start_datetime).toDate(),
|
start: moment(blockedPeriod.start_datetime).toDate(),
|
||||||
|
|
Loading…
Reference in a new issue