aboutsummaryrefslogtreecommitdiffstats
path: root/interface/js/app/history.js
diff options
context:
space:
mode:
Diffstat (limited to 'interface/js/app/history.js')
-rw-r--r--interface/js/app/history.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js
index a17c237ba..e11ec7dca 100644
--- a/interface/js/app/history.js
+++ b/interface/js/app/history.js
@@ -158,12 +158,12 @@ define(["jquery", "footable", "humanize"],
var sym = item.symbols[key];
if (sym.description) {
- var str = "<strong><abbr data-sym-key=\"" + key + "\">" + sym.name + "</abbr></strong>" + "(" + sym.score + ")";
+ var str = "<strong><abbr data-sym-key=\"" + key + "\">" + sym.name + "</abbr></strong>(" + sym.score + ")";
// Store description for tooltip
symbolDescriptions[key] = sym.description;
} else {
- var str = "<strong>" + sym.name + "</strong>" + "(" + sym.score + ")";
+ var str = "<strong>" + sym.name + "</strong>(" + sym.score + ")";
}
if (sym.options) {