From 3aa4586c6e23687b263194bf76e151891c3cf24d Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Sun, 9 Apr 2017 10:40:30 +0100 Subject: [PATCH] [WebUI] Fix history v2 display --- interface/js/app/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 8c3db7b9d..c2e866880 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -65,7 +65,7 @@ function($, _, Humanize) { function process_history_v2(data) { var items = []; - $.each(data.rows.map(function(elt) { return JSON.parse(elt);}), + $.each(data.rows, function (i, item) { preprocess_item(item); -- 2.39.5