From 9b1715cb1c25cf4b110a55b3095bb1f854aad328 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Wed, 28 Feb 2018 18:53:09 +0000 Subject: [PATCH] [Minor] Remove redundand condition (#2041) --- interface/js/app/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.39.5