From: Uelen Paulo Date: Tue, 8 Mar 2016 17:32:51 +0000 (-0300) Subject: CRM-17571 - fixing a missing mistake from select searchByLabel type X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a64e4bda3368db68b2869b7b66bfff6d8b758a87;p=civicrm-core.git CRM-17571 - fixing a missing mistake from select searchByLabel type --- 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(); }