From ee0f11c037d2e98e043f6cafa926306cc14af6c7 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 d6952127f..b13b3007b 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