commit f8a4984: [WebUI] Fix sorting errors by date
moisseev
moiseev at mezonplus.ru
Wed Jul 10 10:28:03 UTC 2019
Author: moisseev
Date: 2019-07-08 21:29:00 +0300
URL: https://github.com/rspamd/rspamd/commit/f8a4984ff763a8cab84d2845e6b2d6a7716014de (refs/pull/2967/head)
[WebUI] Fix sorting errors by date
#2965
---
interface/js/app/history.js | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/interface/js/app/history.js b/interface/js/app/history.js
index d6e96f3e4..a3a1d813f 100644
--- a/interface/js/app/history.js
+++ b/interface/js/app/history.js
@@ -827,7 +827,12 @@ define(["jquery", "footable", "humanize"],
});
var rows = [].concat.apply([], neighbours_data);
$.each(rows, function (i, item) {
- item.ts = unix_time_format(item.ts);
+ item.ts = {
+ value: unix_time_format(item.ts),
+ options: {
+ sortValue: item.ts
+ }
+ };
});
if (Object.prototype.hasOwnProperty.call(tables, "errors")) {
tables.errors.rows.load(rows);
More information about the Commits
mailing list