do not hide nameserver settings via js if email-only is selected for the domain; fixes #1248

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2024-04-28 12:00:49 +02:00
parent c1bc422677
commit 0109c2d26f

View File

@@ -73,7 +73,6 @@ export default function () {
$('#section_b').hide(); $('#section_b').hide();
$('#section_bssl').hide(); $('#section_bssl').hide();
$('#section_c').hide(); $('#section_c').hide();
$('#section_d').hide();
} }
/** /**
@@ -85,13 +84,11 @@ export default function () {
$('#section_b').hide(); $('#section_b').hide();
$('#section_bssl').hide(); $('#section_bssl').hide();
$('#section_c').hide(); $('#section_c').hide();
$('#section_d').hide();
} else { } else {
// show sections // show sections
$('#section_b').show(); $('#section_b').show();
$('#section_bssl').show(); $('#section_bssl').show();
$('#section_c').show(); $('#section_c').show();
$('#section_d').show();
} }
}) })