From: Alexander Moisseev Date: Wed, 28 Feb 2018 18:53:09 +0000 (+0000) Subject: [Minor] Remove redundand condition (#2041) X-Git-Tag: 1.7.0~97^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b1715cb1c25cf4b110a55b3095bb1f854aad328;p=thirdparty%2Frspamd.git [Minor] Remove redundand condition (#2041) --- diff --git a/interface/js/app/history.js b/interface/js/app/history.js index d31f8e885f..50a7147500 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 {