From 9286495fc2021705aa1d701383ac6a3be873498e Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Fri, 21 Apr 2017 17:01:01 +0200 Subject: [PATCH] [WebUI] Fix add header filter in history - Issue: #1604 - Reported by: @dimejo --- interface/js/app/history.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}); -- 2.39.5