luci-base: ui.js: ensure that select choice labels are properly escaped

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 71d370a964)
This commit is contained in:
Jo-Philipp Wich 2019-12-04 18:04:20 +01:00
parent 4193a20d5e
commit 9ca48ecc93

View file

@ -312,7 +312,7 @@ var UISelect = UIElement.extend({
frameEl.lastChild.appendChild(E('option', {
'value': '',
'selected': (this.values.length == 0 || this.values[0] == '') ? '' : null
}, this.choices[''] || this.options.placeholder || _('-- Please choose --')));
}, [ this.choices[''] || this.options.placeholder || _('-- Please choose --') ]));
for (var i = 0; i < keys.length; i++) {
if (keys[i] == null || keys[i] == '')
@ -321,7 +321,7 @@ var UISelect = UIElement.extend({
frameEl.lastChild.appendChild(E('option', {
'value': keys[i],
'selected': (this.values.indexOf(keys[i]) > -1) ? '' : null
}, this.choices[keys[i]] || keys[i]));
}, [ this.choices[keys[i]] || keys[i] ]));
}
}
else {