luci-base: form.js: don't stringify node arguments in CBIValue.value()
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
cc123a03ce
commit
4670099a20
1 changed files with 1 additions and 1 deletions
|
@ -1572,7 +1572,7 @@ var CBIValue = CBIAbstractValue.extend({
|
|||
this.keylist.push(String(key));
|
||||
|
||||
this.vallist = this.vallist || [];
|
||||
this.vallist.push(String(val != null ? val : key));
|
||||
this.vallist.push(L.dom.elem(val) ? val : String(val != null ? val : key));
|
||||
},
|
||||
|
||||
render: function(option_index, section_id, in_table) {
|
||||
|
|
Loading…
Reference in a new issue