From: hitech95 Date: Fri, 26 Apr 2024 19:40:40 +0000 (+0200) Subject: luci-mod-network: ifname_multi -> ifname_multi-bridge X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=7cd6b385e0890b2a35ac9718e16a6f9a861cb98b;p=openwrt-luci.git luci-mod-network: ifname_multi -> ifname_multi-bridge This is to prepare for the bonding implementation, two configuration nodes cannot share the same name. Probably a more unique and precise naming would be better. Signed-off-by: Nicolò Veronese --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js b/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js index ab297f9576..f7427f6d11 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js @@ -577,7 +577,7 @@ return baseclass.extend({ o.depends('type', '8021q'); o.depends('type', '8021ad'); - o = this.replaceOption(s, 'devgeneral', widgets.DeviceSelect, 'ifname_multi', _('Bridge ports')); + o = this.replaceOption(s, 'devgeneral', widgets.DeviceSelect, 'ifname_multi-bridge', _('Bridge ports')); o.size = 10; o.rmempty = true; o.multiple = true;