mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Only pre-select the service if its found
This commit is contained in:
parent
6c5917aea8
commit
0a4ea1c336
1 changed files with 4 additions and 2 deletions
|
@ -1546,13 +1546,15 @@ App.Utils.CalendarDefaultView = (function () {
|
|||
(availableService) =>
|
||||
Number(availableService.id) === Number($selectFilterItem.val())
|
||||
);
|
||||
$appointmentsModal.find('#select-service').val(service.id).trigger('change');
|
||||
|
||||
if (service) {
|
||||
$appointmentsModal.find('#select-service').val(service.id).trigger('change');
|
||||
}
|
||||
}
|
||||
|
||||
// Preselect time
|
||||
$('#start-datetime').datepicker('setDate', info.start);
|
||||
$('#end-datetime').datepicker('setDate', info.end);
|
||||
|
||||
$('#message-box').dialog('close');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue