[Web] Fix PHPMailer, minor style change for quarantine rcpts

This commit is contained in:
andryyy
2020-06-07 10:45:40 +02:00
parent d62d071c79
commit 48b74d77a0
5 changed files with 10 additions and 4 deletions

View File

@@ -43,7 +43,7 @@ jQuery(function($){
if (typeof data.recipients !== 'undefined') {
$.each(data.recipients, function(index, value) {
var elem = $('<span class="mail-address-item"></span>');
elem.text(value.address + (value.type != 'to' ? (' (' + value.type.toUpperCase() + ')') : ''));
elem.text(value.address + ' (' + value.type.toUpperCase() + ')');
$('#qid_detail_recipients').append(elem);
});
}