From d5b16539745e9491957e7922f6d48125cf158bcf Mon Sep 17 00:00:00 2001 From: Kumar Akshay Date: Wed, 28 Feb 2018 08:40:16 -0800 Subject: [PATCH] Fix dropbox issue --- interface/js/app/history.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/interface/js/app/history.js b/interface/js/app/history.js index af941467f..d31f8e885 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -471,7 +471,11 @@ function($, _, Humanize) { this._super(); var action = this.find('action'); if (action instanceof FooTable.Filter) { - this.$action.val(action.query.val()); + if(action.query.val() === 'reject -soft'){ + this.$action.val('reject'); + } else if( action.query.val() != 'reject -soft'){ + this.$action.val(action.query.val()); + } } else { this.$action.val(this.def); } -- 2.39.5