luci-app-ddns: use the correct widget Select 3323/head
authorChen Minqiang <ptpt52@gmail.com>
Sun, 17 Nov 2019 10:19:35 +0000 (18:19 +0800)
committerChen Minqiang <ptpt52@gmail.com>
Sun, 17 Nov 2019 10:51:57 +0000 (18:51 +0800)
ip_network should be NetworkSelect
ip_interface/interface should be DeviceSelect

Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js

index f19445366cac38802bf1017966a46a70cefa09d1..50066d8d40420964288d5bc5aa2b31b979b12c15 100644 (file)
@@ -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;