forked from mirrors/easyappointments
Corrected rendering issue when table calendar and 3-days view are selected (patched previous fix).
This commit is contained in:
parent
ff796d60f1
commit
54ef4e34c2
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
|
|||
var $dateColumn = $(dateColumn);
|
||||
var date = new Date($dateColumn.data('date'));
|
||||
|
||||
if (currentDate !== date) {
|
||||
if (currentDate.getTime() !== date.getTime()) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue