diff options
author | Alex Hermann <alex-github@wenlex.nl> | 2017-08-10 10:55:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-10 10:55:40 +0200 |
commit | 0feec26168edf5b92afc82450c2d9133e37a31b2 (patch) | |
tree | b86564961c958b1182349ea4dffb4863393b01dd /interface | |
parent | 239e0b2e3f1e3524915098674f6187cd8dfbdf41 (diff) | |
download | rspamd-0feec26168edf5b92afc82450c2d9133e37a31b2.tar.gz rspamd-0feec26168edf5b92afc82450c2d9133e37a31b2.zip |
Fix symbol name in history
Commit 75cfe801 broke the display of the symbols in the history. This patch fixes that.
Diffstat (limited to 'interface')
-rw-r--r-- | interface/js/app/history.js | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |