From: Alex Hermann Date: Thu, 10 Aug 2017 08:55:40 +0000 (+0200) Subject: Fix symbol name in history X-Git-Tag: 1.6.5~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee0f11c037d2e98e043f6cafa926306cc14af6c7;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 d6952127fb..b13b3007b5 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) {