CRM-17571 - fixing a missing mistake from select searchByLabel type
authorUelen Paulo <uelenpaulo@gmail.com>
Tue, 8 Mar 2016 17:32:51 +0000 (14:32 -0300)
committerUelen Paulo <uelenpaulo@gmail.com>
Tue, 8 Mar 2016 17:32:51 +0000 (14:32 -0300)
templates/CRM/Contact/Form/Search/Builder.js

index 4301e3d7961b75a45069272f965027474de76036..171ccf39668210d122ecdf14178a9c8deb858238 100644 (file)
         optionKey = option.value;
       }
       var selected = ($.inArray(''+optionKey, options) > -1) ? 'selected="selected"' : '';
-      select.append('<option value="' + option.key + '"' + selected + '>' + option.value + '</option>');
+      select.append('<option value="' + optionKey + '"' + selected + '>' + option.value + '</option>');
     });
     select.change();
   }