From d929c7102247abbfe74b9524bdd0afd271b82e8b Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 14 Nov 2020 16:53:30 +0530 Subject: [PATCH] webapp: fixed minor issue causing dhcp view to become not visible when user logs out and relogins. --- DnsServerCore/www/js/main.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DnsServerCore/www/js/main.js b/DnsServerCore/www/js/main.js index 3400e42e..e61ee236 100644 --- a/DnsServerCore/www/js/main.js +++ b/DnsServerCore/www/js/main.js @@ -54,6 +54,8 @@ function showPageMain(username) { $("#mainPanelTabPaneDashboard").addClass("active"); $("#dhcpTabListLeases").addClass("active"); $("#dhcpTabPaneLeases").addClass("active"); + $("#divDhcpViewScopes").show(); + $("#divDhcpEditScope").hide(); $("#divViewZones").show(); $("#divEditZone").hide();