mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Corrected rendering issue when table calendar and 3-days view are selected.
This commit is contained in:
parent
e8a0631bb9
commit
ff796d60f1
1 changed files with 4 additions and 0 deletions
|
@ -81,6 +81,10 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
|
|||
var $dateColumn = $(dateColumn);
|
||||
var date = new Date($dateColumn.data('date'));
|
||||
|
||||
if (currentDate !== date) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$(dateColumn).find('.provider-column').each(function(index, providerColumn) {
|
||||
var $providerColumn = $(providerColumn);
|
||||
var provider = $providerColumn.data('provider');
|
||||
|
|
Loading…
Reference in a new issue