diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-03-01 12:38:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-01 12:38:47 +0000 |
commit | a4785dd1692193be0f34f5d99a278af52e052770 (patch) | |
tree | f6669ea7d6c35a47d2840c553671d6e1fa205684 | |
parent | db9dff1c16de0464a14e971fa3ed1f44209f62b4 (diff) | |
parent | 9b1715cb1c25cf4b110a55b3095bb1f854aad328 (diff) | |
download | rspamd-a4785dd1692193be0f34f5d99a278af52e052770.tar.gz rspamd-a4785dd1692193be0f34f5d99a278af52e052770.zip |
Merge pull request #2043 from moisseev/patch-1
[Minor] Remove redundand condition (#2041)
-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 d31f8e885..50a714750 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -473,7 +473,7 @@ function($, _, Humanize) { if (action instanceof FooTable.Filter) { if(action.query.val() === 'reject -soft'){ this.$action.val('reject'); - } else if( action.query.val() != 'reject -soft'){ + } else { this.$action.val(action.query.val()); } } else { |