don't use contains in SelectWidget item_query

gives false positive matches when some values are substrings of others
This commit is contained in:
MinRK 2014-10-06 12:59:16 -07:00
parent e808d23594
commit 6740d0492e

View File

@ -403,7 +403,7 @@ define([
var items = this.model.get('value_names');
var that = this;
_.each(items, function(item, index) {
var item_query = ' :contains("' + item + '")';
var item_query = 'option[value_name="' + item + '"]';
if (that.$listbox.find(item_query).length === 0) {
$('<option />')
.text(item)