diff options
author | Jo-Philipp Wich <jo@mein.io> | 2023-06-07 23:26:46 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2023-06-07 23:27:42 +0200 |
commit | a4a4273ca4297c19d143541155696e15291852d3 (patch) | |
tree | 45fd8b2ac38f5905ab1a111e51e54e278f505dd0 | |
parent | fa775eed8a71ef4139e116fbc20e18ce4ba0df4c (diff) |
luci-app-ddns: use proper widget for `bind_network` option
It appears as if the option is supposed to refer to a logical network,
not a firewall zone. Adjust the widget type accordingly.
Fixes: #6405
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r-- | applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js index 1f0b373b3a..c30a3ed083 100644 --- a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js +++ b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js @@ -882,7 +882,7 @@ return view.extend({ }; if (env['has_bindnet']) { - o = s.taboption('advanced', widgets.ZoneSelect, 'bind_network', + o = s.taboption('advanced', widgets.NetworkSelect, 'bind_network', _("Bind Network"), _('OPTIONAL: Network to use for communication') + '<br />' + |