Company selector should be case-insensitive
Closes bug 1364147 Change-Id: I6fb4b66573d91299f89c7e6a31ed80f8490f0330
This commit is contained in:
@@ -329,7 +329,7 @@ function initSingleSelector(name, api_url, select2_extra_options, change_handler
|
||||
success: function (data) {
|
||||
var initial_value = getUrlVars()[name];
|
||||
if (initial_value) {
|
||||
initial_value = encodeURI(initial_value);
|
||||
initial_value = encodeURI(initial_value).toLocaleLowerCase();
|
||||
} else if (data["default"]) {
|
||||
initial_value = data["default"];
|
||||
}
|
||||
|
Reference in New Issue
Block a user