diff options
Diffstat (limited to 'interface/js/app/history.js')
-rw-r--r-- | interface/js/app/history.js | 7 |
1 files changed, 6 insertions, 1 deletions
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); |