mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Correct post-filtering selection for services (revised).
This commit is contained in:
parent
483e2348a1
commit
dcda4b9982
1 changed files with 1 additions and 1 deletions
|
@ -375,7 +375,7 @@
|
|||
$('#filter-services .selected').removeClass('selected');
|
||||
|
||||
$('#filter-services .service-row').each(function() {
|
||||
if ($(this).attr('data-id') === id) {
|
||||
if ($(this).attr('data-id') == id) {
|
||||
$(this).addClass('selected');
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue