forked from mirrors/easyappointments
Remove the dashes from the any-provider option.
This commit is contained in:
parent
ab4e404fac
commit
8a02d5bf0a
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ App.Pages.Booking = (function () {
|
|||
|
||||
// Add the "Any Provider" entry.
|
||||
if ($selectProvider.find('option').length >= 1 && vars('display_any_provider') === '1') {
|
||||
$selectProvider.prepend(new Option('- ' + lang('any_provider') + ' -', 'any-provider', true, true));
|
||||
$selectProvider.prepend(new Option(lang('any_provider'), 'any-provider', true, true));
|
||||
}
|
||||
|
||||
App.Http.Booking.getUnavailabilityDates(
|
||||
|
|
Loading…
Reference in a new issue