From: Alex Hermann Date: Thu, 10 Aug 2017 08:55:40 +0000 (+0200) Subject: Fix symbol name in history X-Git-Tag: 1.7.0~748^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0feec26168edf5b92afc82450c2d9133e37a31b2;p=rspamd.git Fix symbol name in history Commit 75cfe801 broke the display of the symbols in the history. This patch fixes that. --- 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) {