Filter: Fix select2 lint issue

This commit is contained in:
Rob Garrison 2016-05-30 11:12:44 -05:00
parent e8f691bca5
commit 8d5e2d0e47

View File

@ -76,7 +76,7 @@
// build select2 data option
$.each(arry, function(i, v){
// getOptionSource returns { parsed: "value", text: "value" } in v2.24.4
data.push({ id: "" + v.parsed, text: v.text });
data.push({ id: '' + v.parsed, text: v.text });
});
o.data = data;
};