From 8ae000890910ff0ebaa840390aac24d9ed399ab7 Mon Sep 17 00:00:00 2001 From: Jan Pazdziora Date: Fri, 10 Jan 2025 15:02:03 +0100 Subject: [PATCH] luci-base: expose static IPv6 configuration even if IPv6-PD is enabled. Signed-off-by: Jan Pazdziora --- .../luci-base/htdocs/luci-static/resources/protocol/static.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/luci-base/htdocs/luci-static/resources/protocol/static.js b/modules/luci-base/htdocs/luci-static/resources/protocol/static.js index 03a720cd1e..7eb115bd53 100644 --- a/modules/luci-base/htdocs/luci-static/resources/protocol/static.js +++ b/modules/luci-base/htdocs/luci-static/resources/protocol/static.js @@ -184,14 +184,11 @@ return network.registerProtocol('static', { o = s.taboption('general', form.DynamicList, 'ip6addr', _('IPv6 address')); o.datatype = 'ip6addr'; o.placeholder = _('Add IPv6 address…'); - o.depends('ip6assign', ''); o = s.taboption('general', form.Value, 'ip6gw', _('IPv6 gateway')); o.datatype = 'ip6addr("nomask")'; - o.depends('ip6assign', ''); o = s.taboption('general', form.Value, 'ip6prefix', _('IPv6 routed prefix'), _('Public prefix routed to this device for distribution to clients.')); o.datatype = 'ip6addr'; - o.depends('ip6assign', ''); } }); -- 2.30.2