mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-26 01:43:06 +03:00
Corrected creation of provider columns in back-end table view (#381).
This commit is contained in:
parent
d60193c926
commit
7d6f87f7bf
1 changed files with 1 additions and 1 deletions
|
@ -550,7 +550,7 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
|
||||||
}
|
}
|
||||||
|
|
||||||
for (var index in providers) {
|
for (var index in providers) {
|
||||||
var provider = GlobalVariables.availableProviders[index];
|
var provider = providers[index];
|
||||||
_createProviderColumn($dateColumn, date, provider, events);
|
_createProviderColumn($dateColumn, date, provider, events);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue