Skip to content

Commit

Permalink
luci-mod-status: show lease time on IPv6 networks
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolò Veronese <[email protected]>
  • Loading branch information
hitech95 authored and systemcrash committed May 14, 2024
1 parent 2bb1e06 commit 13dd9c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function renderbox(ifc, ipv6) {
active = (dev && ifc.getProtocol() != 'none'),
addrs = (ipv6 ? ifc.getIP6Addrs() : ifc.getIPAddrs()) || [],
dnssrv = (ipv6 ? ifc.getDNS6Addrs() : ifc.getDNSAddrs()) || [],
expires = (ipv6 ? null : ifc.getExpiry()),
expires = ifc.getExpiry(),
uptime = ifc.getUptime();

return E('div', { class: 'ifacebox' }, [
Expand Down

0 comments on commit 13dd9c4

Please sign in to comment.