diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-02-28 18:53:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 18:53:09 +0000 |
commit | 9b1715cb1c25cf4b110a55b3095bb1f854aad328 (patch) | |
tree | f6669ea7d6c35a47d2840c553671d6e1fa205684 /interface/js | |
parent | db9dff1c16de0464a14e971fa3ed1f44209f62b4 (diff) | |
download | rspamd-9b1715cb1c25cf4b110a55b3095bb1f854aad328.tar.gz rspamd-9b1715cb1c25cf4b110a55b3095bb1f854aad328.zip |
[Minor] Remove redundand condition (#2041)
Diffstat (limited to 'interface/js')
-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 { |