luci-base: form.js: default to unlimited dropdown size
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
c2f8bc90ff
commit
f302eabd72
1 changed files with 1 additions and 1 deletions
|
@ -1543,7 +1543,7 @@ var CBIMultiValue = CBIDynamicList.extend({
|
||||||
optional: this.optional || this.rmempty,
|
optional: this.optional || this.rmempty,
|
||||||
select_placeholder: this.placeholder,
|
select_placeholder: this.placeholder,
|
||||||
display_items: this.display_size || this.size || 3,
|
display_items: this.display_size || this.size || 3,
|
||||||
dropdown_items: this.dropdown_size || this.size || 5,
|
dropdown_items: this.dropdown_size || this.size || -1,
|
||||||
validate: L.bind(this.validate, this, section_id)
|
validate: L.bind(this.validate, this, section_id)
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue