diff --git a/modules/luci-base/htdocs/luci-static/resources/ui.js b/modules/luci-base/htdocs/luci-static/resources/ui.js index 4aac8bcfcf..6c3f29183f 100644 --- a/modules/luci-base/htdocs/luci-static/resources/ui.js +++ b/modules/luci-base/htdocs/luci-static/resources/ui.js @@ -320,8 +320,8 @@ var UISelect = UIElement.extend({ if (value == null) value = ''; - for (var i = 0; i < this.node.options.length; i++) - this.node.options[i].selected = (this.node.options[i].value == value); + for (var i = 0; i < this.node.firstChild.options.length; i++) + this.node.firstChild.options[i].selected = (this.node.firstChild.options[i].value == value); return; }