From a64e4bda3368db68b2869b7b66bfff6d8b758a87 Mon Sep 17 00:00:00 2001 From: Uelen Paulo Date: Tue, 8 Mar 2016 14:32:51 -0300 Subject: [PATCH] CRM-17571 - fixing a missing mistake from select searchByLabel type --- templates/CRM/Contact/Form/Search/Builder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/CRM/Contact/Form/Search/Builder.js b/templates/CRM/Contact/Form/Search/Builder.js index 4301e3d796..171ccf3966 100644 --- a/templates/CRM/Contact/Form/Search/Builder.js +++ b/templates/CRM/Contact/Form/Search/Builder.js @@ -154,7 +154,7 @@ optionKey = option.value; } var selected = ($.inArray(''+optionKey, options) > -1) ? 'selected="selected"' : ''; - select.append(''); + select.append(''); }); select.change(); } -- 2.25.1