From: Jo-Philipp Wich Date: Mon, 4 May 2020 19:31:38 +0000 (+0200) Subject: luci-base: ui.js: fix UITextfield.setValue() X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=915e446c07ca5c7338dd7b8b5805232449c08c19;p=oweals%2Fluci.git luci-base: ui.js: fix UITextfield.setValue() Fixes: d02c26772 ("luci-base: ui.js: rework password input handling") Signed-off-by: Jo-Philipp Wich --- diff --git a/modules/luci-base/htdocs/luci-static/resources/ui.js b/modules/luci-base/htdocs/luci-static/resources/ui.js index c206e02af..822b572a3 100644 --- a/modules/luci-base/htdocs/luci-static/resources/ui.js +++ b/modules/luci-base/htdocs/luci-static/resources/ui.js @@ -368,7 +368,7 @@ var UITextfield = UIElement.extend(/** @lends LuCI.ui.Textfield.prototype */ { /** @override */ setValue: function(value) { - var inputEl = this.node.childNodes[+!!this.options.password]; + var inputEl = this.node.querySelector('input'); inputEl.value = value; } });