diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-04-06 10:34:17 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-04-06 10:34:17 +0300 |
commit | b7853e057ab2d9f663d1df08bbf6f775f2b65be7 (patch) | |
tree | 8190c69db6a07831c8faee360180d079c79732b0 /interface | |
parent | 78abccc545f5658c4b74c61f54381ceee285aa20 (diff) | |
download | rspamd-b7853e057ab2d9f663d1df08bbf6f775f2b65be7.tar.gz rspamd-b7853e057ab2d9f663d1df08bbf6f775f2b65be7.zip |
[WebUI] history: break To address lists on commas
Diffstat (limited to 'interface')
-rw-r--r-- | interface/js/app/history.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 4c1e75ce8..779ed6855 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -102,7 +102,7 @@ function($, _, Humanize) { "value": scan_time }; item.id = item['message-id']; - item.rcpt_mime = item.rcpt_mime.join(","); + item.rcpt_mime = item.rcpt_mime.join(",​"); items.push(item); }); @@ -141,7 +141,6 @@ function($, _, Humanize) { "style": { "font-size": "11px", "minWidth": 130, - "maxWidth": 200, "overflow": "hidden", "textOverflow": "ellipsis", "wordBreak": "break-all", @@ -161,7 +160,7 @@ function($, _, Humanize) { "breakpoints": "xs sm md", "style": { "font-size": "11px", - "minWidth": 150 + "minWidth": 100 } }, { "name": "rcpt_mime", @@ -169,9 +168,7 @@ function($, _, Humanize) { "breakpoints": "xs sm md", "style": { "font-size": "11px", - "word-break": "break-all", - "minWidth": 150, - "maxWidth": 300 + "minWidth": 100 } }, { "name": "subject", |