diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-11-17 22:58:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-17 22:58:28 +0100 |
commit | d95f0c548994d069d99f07f37320b2eee41633d7 (patch) | |
tree | 9465d0437f1ce61ed599afa26760f875c767bc9f /applications | |
parent | 5273c8580f91c8913568da0ecc8543303d022a11 (diff) | |
parent | 56ed870746ecb16781d2753da643a6df9ee5b4b7 (diff) |
Merge pull request #3323 from ptpt52/fix-widget-select
luci-app-ddns: use the correct widget Select
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js | 6 |
1 files changed, 3 insertions, 3 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 f19445366..50066d8d4 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 @@ -640,7 +640,7 @@ return L.view.extend({ // ip_network - o = s.taboption('advanced', widgets.ZoneSelect, 'ip_network', _("Network"), + o = s.taboption('advanced', widgets.NetworkSelect, 'ip_network', _("Network"), _("Defines the network to read systems IP-Address from")); o.depends('ip_source','network'); o.modalonly = true; @@ -659,7 +659,7 @@ return L.view.extend({ // ip_interface - o = s.taboption('advanced', widgets.ZoneSelect, 'ip_interface', _("Interface"), + o = s.taboption('advanced', widgets.DeviceSelect, 'ip_interface', _("Interface"), _("Defines the interface to read systems IP-Address from")); o.modalonly = true; @@ -678,7 +678,7 @@ return L.view.extend({ // interface - o = s.taboption('advanced', widgets.ZoneSelect, 'interface', _("Event Network"), + o = s.taboption('advanced', widgets.DeviceSelect, 'interface', _("Event Network"), _("Network on which the ddns-updater scripts will be started")); o.modalonly = true; |