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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1796%2Fhead;p=thirdparty%2Frspamd.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 381c01d0d1..2969e9ba7b 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) {