luci-mod-admin-full: fix script regression after 152ba9ab22
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
This commit is contained in:
parent
55f458326d
commit
c478101ca4
1 changed files with 2 additions and 3 deletions
|
@ -57,10 +57,9 @@
|
|||
|
||||
for (var i = 0; i < ifc.ip6addrs.length; i++)
|
||||
html += String.format(
|
||||
'%s%s/%d',
|
||||
'%s%s',
|
||||
i ? ', ' : '',
|
||||
ifc.ip6addrs[i].addr.toUpperCase(),
|
||||
ifc.ip6addrs[i].prefix
|
||||
ifc.ip6addrs[i].toUpperCase()
|
||||
);
|
||||
|
||||
html += '<br />';
|
||||
|
|
Loading…
Reference in a new issue