From 4dbd2bbf4f90b7528faf408652537ae39d23d732 Mon Sep 17 00:00:00 2001 From: andryyy Date: Tue, 18 Feb 2020 11:30:20 +0100 Subject: [PATCH] [Web] Fix DNS check for relayed domain --- data/web/js/site/mailbox.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/web/js/site/mailbox.js b/data/web/js/site/mailbox.js index 13a8398b..0c8c0aa0 100644 --- a/data/web/js/site/mailbox.js +++ b/data/web/js/site/mailbox.js @@ -262,9 +262,6 @@ jQuery(function($){ item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox); item.chkbox = ''; item.action = '
'; - if (item.backupmx_int == 1) { - item.domain_name = ' ' + item.domain_name; - } if (role == "admin") { item.action += ' ' + lang.edit + '' + ' ' + lang.remove + ''; @@ -273,6 +270,9 @@ jQuery(function($){ item.action += ' ' + lang.edit + ''; } item.action += ' DNS
'; + if (item.backupmx_int == 1) { + item.domain_name = ' ' + item.domain_name; + } }); } }),