mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Another fix related to booking selection
This commit is contained in:
parent
cc268f8d87
commit
5b387b0c50
1 changed files with 3 additions and 2 deletions
|
@ -650,9 +650,10 @@ App.Pages.Booking = (function () {
|
|||
|
||||
$displayBookingSelection.text(`${lang('service')} │ ${lang('provider')}`); // Notice: "│" is a custom ASCII char
|
||||
|
||||
const serviceOptionText = $selectService.find('option:selected').text();
|
||||
const providerOptionText = $selectProvider.find('option:selected').text();
|
||||
|
||||
if (serviceId && providerId) {
|
||||
const serviceOptionText = $selectService.find('option:selected').text();
|
||||
const providerOptionText = $selectProvider.find('option:selected').text();
|
||||
$displayBookingSelection.text(`${serviceOptionText} │ ${providerOptionText}`);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue