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