From 0109c2d26fa0a207cd9412c59f5c5c9a457839c1 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Sun, 28 Apr 2024 12:00:49 +0200 Subject: [PATCH] do not hide nameserver settings via js if email-only is selected for the domain; fixes #1248 Signed-off-by: Michael Kaufmann --- templates/Froxlor/assets/js/jquery/domains.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/templates/Froxlor/assets/js/jquery/domains.js b/templates/Froxlor/assets/js/jquery/domains.js index a9b7458d..9e3766ec 100644 --- a/templates/Froxlor/assets/js/jquery/domains.js +++ b/templates/Froxlor/assets/js/jquery/domains.js @@ -73,7 +73,6 @@ export default function () { $('#section_b').hide(); $('#section_bssl').hide(); $('#section_c').hide(); - $('#section_d').hide(); } /** @@ -85,13 +84,11 @@ export default function () { $('#section_b').hide(); $('#section_bssl').hide(); $('#section_c').hide(); - $('#section_d').hide(); } else { // show sections $('#section_b').show(); $('#section_bssl').show(); $('#section_c').show(); - $('#section_d').show(); } })