From 0feec26168edf5b92afc82450c2d9133e37a31b2 Mon Sep 17 00:00:00 2001 From: Alex Hermann Date: Thu, 10 Aug 2017 10:55:40 +0200 Subject: [PATCH] Fix symbol name in history Commit 75cfe801 broke the display of the symbols in the history. This patch fixes that. --- 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 381c01d0d..2969e9ba7 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -64,7 +64,7 @@ function($, _, Humanize) { Object.keys(item.symbols).map(function(key) { var sym = item.symbols[key]; - sym.name = EscapeHTML(sym.name); + sym.name = EscapeHTML(key); sym.description = EscapeHTML(sym.description); if (sym.options) { -- 2.39.5