diff options
author | Jo-Philipp Wich <jo@mein.io> | 2023-12-08 12:56:25 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2023-12-08 12:58:01 +0100 |
commit | ea81dde0ebb10947d1334cc9c732920e76db4a17 (patch) | |
tree | e63d8013d14dea8708b364550f6423713d77c270 /modules/luci-mod-network/htdocs/luci-static/resources/tools | |
parent | 4b6b00927b4a1076ed8bf23f3a0327a335ebece5 (diff) |
luci-mod-network: remove unused option property
The logic handling the `migrate` property has been dropped in commit
f689d0d208 ("luci-mod-network: refactor device configuration") so remove
the now redundant property as well.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static/resources/tools')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js | 1 |
1 files changed, 0 insertions, 1 deletions
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 318373c7c7..c2064c0a74 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 @@ -724,7 +724,6 @@ return baseclass.extend({ o = this.replaceOption(s, 'devgeneral', cbiFlagTristate, 'ipv6', _('Enable IPv6')); o.sysfs = '!/proc/sys/net/ipv6/conf/%s/disable_ipv6'.format(devname || 'default'); - o.migrate = false; o = this.replaceOption(s, 'devadvanced', cbiFlagTristate, 'ip6segmentrouting', _('Enable IPv6 segment routing')); o.sysfs = '/proc/sys/net/ipv6/conf/%s/seg6_enabled'.format(devname || 'default'); |