diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-08-31 12:45:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-31 12:45:39 +0200 |
commit | 71d79ec0c153d3b8d0ba9d512294455d2d4b6ad1 (patch) | |
tree | bae6dda839745b8d0efe3b2d786aaaf62e5b9b7b /modules/luci-mod-network/htdocs/luci-static/resources | |
parent | 32e90a813527dc274ec5faaf6bbd49569c7d1a20 (diff) | |
parent | 3ebdf51f9b2e713cd655c0f97f2542c96736cae5 (diff) |
Merge pull request #5301 from vgaetera/fix-iface-ip6table
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 | 2 |
1 files changed, 1 insertions, 1 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 720cefe059..1ce7567afc 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 @@ -950,7 +950,7 @@ return view.extend({ o = nettools.replaceOption(s, 'advanced', form.Value, 'ip6table', _('Override IPv6 routing table')); o.datatype = 'or(uinteger, string)'; for (var i = 0; i < rtTables.length; i++) - o.value(rtTables[i][1], '%s (%d)'.format(rtTables[i][0], rtTables[i][1])); + o.value(rtTables[i][1], '%s (%d)'.format(rtTables[i][1], rtTables[i][0])); o = nettools.replaceOption(s, 'advanced', form.Flag, 'delegate', _('Delegate IPv6 prefixes'), _('Enable downstream delegation of IPv6 prefixes available on this interface')); o.default = o.enabled; |