mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-31 13:40:29 +08:00
Merge pull request #6634 from minrk/select-contains
don't use contains in SelectWidget item_query
This commit is contained in:
commit
6163656f28
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user