mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Working plan exception improvements for the table view
This commit is contained in:
parent
67dc42b2d8
commit
4203bf5851
1 changed files with 3 additions and 1 deletions
|
@ -1186,7 +1186,7 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
|
||||||
'text': EALang.provider
|
'text': EALang.provider
|
||||||
}),
|
}),
|
||||||
$('<span/>', {
|
$('<span/>', {
|
||||||
'text': event.data ? event.data.first_name + ' ' + event.data.last_name : '-'
|
'text': event.data ? event.data.provider.first_name + ' ' + event.data.provider.last_name : '-'
|
||||||
}),
|
}),
|
||||||
$('<br/>'),
|
$('<br/>'),
|
||||||
|
|
||||||
|
@ -1741,6 +1741,8 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
|
||||||
|
|
||||||
createView(startDate, endDate);
|
createView(startDate, endDate);
|
||||||
|
|
||||||
|
$('#insert-working-plan-exception').hide();
|
||||||
|
|
||||||
bindEventHandlers();
|
bindEventHandlers();
|
||||||
|
|
||||||
// Hide Google Calendar Sync buttons cause they can not be used within this view.
|
// Hide Google Calendar Sync buttons cause they can not be used within this view.
|
||||||
|
|
Loading…
Reference in a new issue