luci-mod-network: wireless.js: select proper 11w default for WPA3 modes
authorJo-Philipp Wich <jo@mein.io>
Thu, 19 Sep 2019 13:46:39 +0000 (15:46 +0200)
committerJo-Philipp Wich <jo@mein.io>
Thu, 19 Sep 2019 13:47:55 +0000 (15:47 +0200)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js

index 6c254c059e8037952c7f3a479913562fdbf6251b..efbc1140360101e34e6407655f7e7ade3d724b0f 100644 (file)
@@ -1515,8 +1515,7 @@ return L.view.extend({
                                                // ieee802.11w options
                                                if (L.hasSystemFeature('hostapd', '11w')) {
                                                        o = ss.taboption('encryption', form.ListValue, 'ieee80211w', _('802.11w Management Frame Protection'), _("Requires the 'full' version of wpad/hostapd and support from the wifi driver <br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)"));
-                                                       o.default = '';
-                                                       o.value('', _('Disabled (default)'));
+                                                       o.value('', _('Disabled'));
                                                        o.value('1', _('Optional'));
                                                        o.value('2', _('Required'));
                                                        o.depends({ mode: 'ap', encryption: 'wpa2' });
@@ -1543,6 +1542,11 @@ return L.view.extend({
                                                        o.depends({ mode: 'sta-wds', encryption: 'sae' });
                                                        o.depends({ mode: 'sta-wds', encryption: 'sae-mixed' });
                                                        o.depends({ mode: 'sta-wds', encryption: 'owe' });
+                                                       o.defaults = {
+                                                               '2': [{ encryption: 'sae' }],
+                                                               '1': [{ encryption: 'sae-mixed'}],
+                                                               '':  []
+                                                       };
 
                                                        o = ss.taboption('encryption', form.Value, 'ieee80211w_max_timeout', _('802.11w maximum timeout'), _('802.11w Association SA Query maximum timeout'));
                                                        o.depends('ieee80211w', '1');