diff options
| author | Jo-Philipp Wich | 2015-11-21 12:53:33 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2015-11-21 12:53:43 +0000 |
| commit | c478101ca48475373198e7ad69263e4b3b584bec (patch) | |
| tree | fd08d2fd2bf64125fd97380fc37da8e1ee543994 | |
| parent | 55f458326dc77dd35dce2c22df2353b2a0192627 (diff) | |
| download | luci-c478101ca48475373198e7ad69263e4b3b584bec.tar.gz | |
luci-mod-admin-full: fix script regression after 152ba9ab228ad4ea4c1748f29fe4ffa5f8f74ac6
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
| -rw-r--r-- | modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm b/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm index adf6dccd56..94d9e88117 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm @@ -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 />'; |