mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-09 17:42:21 +03:00
Correct the error formatting
This commit is contained in:
parent
89feea4a00
commit
c9da3c8aab
1 changed files with 2 additions and 2 deletions
|
@ -1444,7 +1444,7 @@ App.Utils.CalendarDefaultView = (function () {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw new Error('Invalid date format setting provided!', vars('date_format'));
|
throw new Error('Invalid date format setting provided: ' + vars('date_format'));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Time formats
|
// Time formats
|
||||||
|
@ -1461,7 +1461,7 @@ App.Utils.CalendarDefaultView = (function () {
|
||||||
slotTimeFormat = 'h a';
|
slotTimeFormat = 'h a';
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw new Error('Invalid time format setting provided!', vars('time_format'));
|
throw new Error('Invalid time format setting provided: ' + vars('time_format'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const initialView = window.innerWidth < 468 ? 'timeGridDay' : 'timeGridWeek';
|
const initialView = window.innerWidth < 468 ? 'timeGridDay' : 'timeGridWeek';
|
||||||
|
|
Loading…
Reference in a new issue