Correct post-filtering selection for services.
This commit is contained in:
parent
1e88d37879
commit
54897e8a3f
1 changed files with 1 additions and 1 deletions
|
@ -383,7 +383,7 @@
|
||||||
|
|
||||||
if (display) {
|
if (display) {
|
||||||
$.each(this.filterResults, function(index, service) {
|
$.each(this.filterResults, function(index, service) {
|
||||||
if (service.id === id) {
|
if (service.id == id) {
|
||||||
this.display(service);
|
this.display(service);
|
||||||
$('#edit-service, #delete-service').prop('disabled', false);
|
$('#edit-service, #delete-service').prop('disabled', false);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue