From 71fd232e80327eec68e519813b2219ffd9ee3c2d Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 9 Oct 2021 16:52:44 +0530 Subject: [PATCH] dhcp.js: fixed minor ui issues. --- DnsServerCore/www/js/dhcp.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DnsServerCore/www/js/dhcp.js b/DnsServerCore/www/js/dhcp.js index 857ee626..fa440226 100644 --- a/DnsServerCore/www/js/dhcp.js +++ b/DnsServerCore/www/js/dhcp.js @@ -268,6 +268,9 @@ function clearDhcpScopeForm() { $("#txtDhcpScopeLeaseTimeHours").val("0"); $("#txtDhcpScopeLeaseTimeMinutes").val("0"); $("#txtDhcpScopeOfferDelayTime").val("0"); + $("#chkDhcpScopePingCheckEnabled").prop("checked", false); + $("#txtDhcpScopePingCheckTimeout").val("1000"); + $("#txtDhcpScopePingCheckRetries").val("2"); $("#txtDhcpScopeDomainName").val(""); $("#txtDhcpScopeDnsTtl").val("900"); $("#txtDhcpScopeServerAddress").val("");