diff options
author | Andrew Lewis <nerf@judo.za.org> | 2017-04-21 17:01:01 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2017-04-21 17:01:01 +0200 |
commit | 9286495fc2021705aa1d701383ac6a3be873498e (patch) | |
tree | d4288756a160c9f12ab5c2f47ea0cb680a248107 | |
parent | 2d331738d279d1655b43d0d94befa5af6a4a5648 (diff) | |
download | rspamd-9286495fc2021705aa1d701383ac6a3be873498e.tar.gz rspamd-9286495fc2021705aa1d701383ac6a3be873498e.zip |
[WebUI] Fix add header filter in history
- Issue: #1604
- Reported by: @dimejo
-rw-r--r-- | interface/js/app/history.js | 4 |
1 files 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 +}); |