Browse Source

Fix dropbox issue

tags/1.7.0
Kumar Akshay 6 years ago
parent
commit
d5b1653974
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      interface/js/app/history.js

+ 5
- 1
interface/js/app/history.js View File

@@ -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);
}

Loading…
Cancel
Save