diff options
author | Paul Donald <newtwen@gmail.com> | 2024-02-15 02:58:42 +0100 |
---|---|---|
committer | Paul Donald <newtwen@gmail.com> | 2024-02-15 04:01:53 +0100 |
commit | c0655df33875903161a9040cb8f0b6b350448493 (patch) | |
tree | a0865f6a381acbdf71c0ccb8efe843decf155e63 /modules/luci-mod-network | |
parent | 269df2426d8c207d6c89ad2950a65f187d9a922e (diff) |
luci-mod-network: fix broken formatting
Signed-off-by: Paul Donald <newtwen@gmail.com>
Diffstat (limited to 'modules/luci-mod-network')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js | 4 |
1 files changed, 2 insertions, 2 deletions
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 e51eb023c8..84e0e407a2 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 @@ -1609,8 +1609,8 @@ return view.extend({ // Probe 802.11k and 802.11v support via EAP support (full hostapd has EAP) if (L.hasSystemFeature('hostapd', 'eap')) { - /* 802.11k settings start */ o = - ss.taboption('roaming', form.Flag, 'ieee80211k', _('802.11k RRM'), _('Radio Resource Measurement - Sends beacons to assist roaming. Not all clients support this.')); + /* 802.11k settings start */ + o = ss.taboption('roaming', form.Flag, 'ieee80211k', _('802.11k RRM'), _('Radio Resource Measurement - Sends beacons to assist roaming. Not all clients support this.')); // add_dependency_permutations(o, { mode: ['ap', 'ap-wds'], encryption: ['psk', 'psk2', 'psk-mixed', 'sae', 'sae-mixed'] }); o.depends('mode', 'ap'); o.depends('mode', 'ap-wds'); |