diff options
Diffstat (limited to 'interface/js/app/history.js')
-rw-r--r-- | interface/js/app/history.js | 3 |
1 files changed, 3 insertions, 0 deletions
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 = '<strong>' + sym.name + '</strong>' + "(" + sym.score + ")"; if (sym.options) { |