change rspamd option delimiter

master
friedPotat0 2019-10-12 13:27:21 +02:00
parent 31ceb54732
commit c97b91503b
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@ jQuery(function($){
} }
var str = '<strong>' + key + '</strong> ' + sym.score_formatted; var str = '<strong>' + key + '</strong> ' + sym.score_formatted;
if (sym.options) { if (sym.options) {
str += ' [' + sym.options.join(",") + "]"; str += ' [' + sym.options.join(", ") + "]";
} }
item.symbols[key].str = str; item.symbols[key].str = str;
}); });