diff options
author | Florian Eckert <fe@dev.tdt.de> | 2023-09-01 09:51:21 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2023-09-01 09:52:13 +0200 |
commit | 3f2320e0aa140d6e59dedeca97a523e0be4a399b (patch) | |
tree | 908185bbd13ecf50512c0ee7c6986a3fa40a448a /protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol | |
parent | b729af9ff5ad016daeb3aa91374a5ab7a6cd58cd (diff) |
luci-proto-modemmanager: also allow none for preferredmode config option
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol')
-rw-r--r-- | protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js b/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js index 224bd6f3bd..e3d98d75ef 100644 --- a/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js +++ b/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js @@ -109,6 +109,7 @@ return network.registerProtocol('modemmanager', { o.value('3g'); o.value('4g'); o.value('5g'); + o.value('none', _('None')); o.depends('allowedmode','3g|2g'); o.depends('allowedmode','4g|2g'); o.depends('allowedmode','4g|3g'); |