From 6f45464121b10a66e7fb2d5c4d2070739437daf2 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Thu, 10 Aug 2017 19:07:22 +0100 Subject: [PATCH] [Fix] Add another workaround to display history properly --- interface/js/app/history.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 2969e9ba7..b13b3007b 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -117,6 +117,9 @@ function($, _, Humanize) { preprocess_item(item); Object.keys(item.symbols).map(function(key) { var sym = item.symbols[key]; + if (!sym.name) { + sym.name = key; + } var str = '' + sym.name + '' + "(" + sym.score + ")"; if (sym.options) { -- 2.39.5