From b7853e057ab2d9f663d1df08bbf6f775f2b65be7 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Thu, 6 Apr 2017 10:34:17 +0300 Subject: [PATCH] [WebUI] history: break To address lists on commas --- interface/js/app/history.js | 9 +++------ 1 file 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", -- 2.39.5