aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-03-01 12:38:47 +0000
committerGitHub <noreply@github.com>2018-03-01 12:38:47 +0000
commita4785dd1692193be0f34f5d99a278af52e052770 (patch)
treef6669ea7d6c35a47d2840c553671d6e1fa205684
parentdb9dff1c16de0464a14e971fa3ed1f44209f62b4 (diff)
parent9b1715cb1c25cf4b110a55b3095bb1f854aad328 (diff)
downloadrspamd-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.js2
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 {