diff --git a/DnsServerCore/www/js/dhcp.js b/DnsServerCore/www/js/dhcp.js index 4f013428..5e7f67c0 100644 --- a/DnsServerCore/www/js/dhcp.js +++ b/DnsServerCore/www/js/dhcp.js @@ -47,8 +47,8 @@ function refreshDhcpLeases() { dhcpLeases[i].address + "" + dhcpLeases[i].type + "" + htmlEncode(dhcpLeases[i].hostName) + "" + - dhcpLeases[i].leaseObtained + "" + - dhcpLeases[i].leaseExpires + + moment(dhcpLeases[i].leaseObtained).local().format("YYYY-MM-DD HH:mm") + "" + + moment(dhcpLeases[i].leaseExpires).local().format("YYYY-MM-DD HH:mm") + "" + ""; }