From: Jo-Philipp Wich Date: Fri, 20 Sep 2019 11:39:22 +0000 (+0200) Subject: luci-mod-network: fix key option quirk when switching wep and wpa modes X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f3a94051ec38e7639c074901a20f456647176495;p=oweals%2Fluci.git luci-mod-network: fix key option quirk when switching wep and wpa modes Signed-off-by: Jo-Philipp Wich --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js index 595cd1e22..f4ded41fe 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -1252,6 +1252,9 @@ return L.view.extend({ o.write = function(section_id, value) { uci.set('wireless', section_id, 'key', value); uci.unset('wireless', section_id, 'key1'); + uci.unset('wireless', section_id, 'key2'); + uci.unset('wireless', section_id, 'key3'); + uci.unset('wireless', section_id, 'key4'); }; @@ -1265,7 +1268,7 @@ return L.view.extend({ o.cfgvalue = function(section_id) { var slot = +uci.get('wireless', section_id, 'key'); - return String((slot >= 1 && slot <= 4) ? slot : 1); + return (slot >= 1 && slot <= 4) ? String(slot) : ''; }; o.write = function(section_id, value) {