diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-06-01 15:27:24 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-06-01 15:34:11 +0200 |
commit | 10f02472c5fdab72615a7d3695e8f354811cd661 (patch) | |
tree | 2191050f3132f49aa34659d7fc32ead92772d449 /modules/luci-mod-network/htdocs/luci-static/resources | |
parent | 26e21d43b5402d0c20bd2222429629c164968668 (diff) |
luci-mod-network: rename "device" option to "_net_device" internally
This is required to resolve conflicts with the existing "device" option
in other proto handlers such as PPP or QMI where "device" refers to the
device path of the tty control device instead of a netdev name.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static/resources')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js index eacb2fb416..a8e289c480 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js @@ -521,7 +521,8 @@ return view.extend({ .then(L.bind(this.renderMoreOptionsModal, this, s.section)); }, this); - o = s.taboption('general', widgets.DeviceSelect, 'device', _('Device')); + o = s.taboption('general', widgets.DeviceSelect, '_net_device', _('Device')); + o.ucioption = 'device'; o.nobridges = false; o.optional = false; o.network = ifc.getName(); @@ -888,7 +889,7 @@ return view.extend({ case 'igmp_snooping': case 'stp': case 'type': - case 'device': + case '_net_device': var deps = []; for (var j = 0; j < protocols.length; j++) { if (!protocols[j].isVirtual()) { |