From f8a4984ff763a8cab84d2845e6b2d6a7716014de Mon Sep 17 00:00:00 2001 From: moisseev Date: Mon, 8 Jul 2019 21:29:00 +0300 Subject: [PATCH] [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); -- 2.39.5