Corrected rendering issue when table calendar and 3-days view are selected.

This commit is contained in:
alext 2016-11-06 12:18:02 +01:00
parent e8a0631bb9
commit ff796d60f1
1 changed files with 4 additions and 0 deletions

View File

@ -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');