From: Andrew Lewis Date: Fri, 21 Apr 2017 15:01:01 +0000 (+0200) Subject: [WebUI] Fix add header filter in history X-Git-Tag: 1.6.0~341 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9286495fc2021705aa1d701383ac6a3be873498e;p=rspamd.git [WebUI] Fix add header filter in history - Issue: #1604 - Reported by: @dimejo --- diff --git a/interface/js/app/history.js b/interface/js/app/history.js index c2e866880..3e8010de4 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -368,7 +368,7 @@ function($, _, Humanize) { FooTable.actionFilter = FooTable.Filtering.extend({ construct : function(instance) { this._super(instance); - this.actions = [ 'reject', 'add_header', 'greylist', + this.actions = [ 'reject', 'add header', 'greylist', 'no action', 'soft reject' ]; this.def = 'Any action'; this.$action = null; @@ -631,4 +631,4 @@ function($, _, Humanize) { interface.setup = function(rspamd, tables) { }; return interface; -}); \ No newline at end of file +});