summaryrefslogtreecommitdiffstats
path: root/interface/js
diff options
context:
space:
mode:
authormoisseev <moiseev@mezonplus.ru>2019-07-19 14:07:42 +0300
committermoisseev <moiseev@mezonplus.ru>2019-07-19 14:07:42 +0300
commit61e85c6e7ad7a59b5f29465480a4b0c178ab740d (patch)
treeb7cd9f0a70f4487b1ac29c46a9733f2140afa464 /interface/js
parentb71ee0b650b2772768fa725c1cc86200ae9cc60f (diff)
downloadrspamd-61e85c6e7ad7a59b5f29465480a4b0c178ab740d.tar.gz
rspamd-61e85c6e7ad7a59b5f29465480a4b0c178ab740d.zip
[Minor] Remove virtual scan time from WebUI history
Diffstat (limited to 'interface/js')
-rw-r--r--interface/js/app/history.js24
1 files changed, 6 insertions, 18 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js
index a3a1d813f..49e228e3a 100644
--- a/interface/js/app/history.js
+++ b/interface/js/app/history.js
@@ -231,13 +231,7 @@ define(["jquery", "footable", "humanize"],
sortValue: item.unix_time
}
};
- var scan_time = item.time_real.toFixed(3) + " / " + item.time_virtual.toFixed(3);
- item.scan_time = {
- options: {
- sortValue: item.time_real
- },
- value: scan_time
- };
+ item.time_real = item.time_real.toFixed(3);
item.id = item["message-id"];
var rcpt = {};
@@ -272,12 +266,6 @@ define(["jquery", "footable", "humanize"],
$.each(data, function (i, item) {
item.time = unix_time_format(item.unix_time);
preprocess_item(item);
- item.scan_time = {
- options: {
- sortValue: item.scan_time
- },
- value: item.scan_time
- };
item.symbols = Object.keys(item.symbols)
.map(function (key) {
return item.symbols[key];
@@ -395,14 +383,14 @@ define(["jquery", "footable", "humanize"],
},
formatter: Humanize.compactInteger
}, {
- name: "scan_time",
- title: '<span title="real / virtual">Scan time</span>',
+ name: "time_real",
+ title: "Scan time",
breakpoints: "xs sm md",
style: {
"font-size": "11px",
"maxWidth": 72
},
- sortValue: function (val) { return Number(val.options.sortValue); }
+ sortValue: function (val) { return Number(val); }
}, {
sorted: true,
direction: "DESC",
@@ -484,13 +472,13 @@ define(["jquery", "footable", "humanize"],
formatter: Humanize.compactInteger
}, {
name: "scan_time",
- title: '<span title="real / virtual">Scan time</span>',
+ title: "Scan time",
breakpoints: "xs sm",
style: {
"font-size": "11px",
"maxWidth": 80
},
- sortValue: function (val) { return Number(val.options.sortValue); }
+ sortValue: function (val) { return Number(val); }
}, {
sorted: true,
direction: "DESC",