瀏覽代碼

Fix dropbox issue

tags/1.7.0
Kumar Akshay 6 年之前
父節點
當前提交
d5b1653974
共有 1 個檔案被更改,包括 5 行新增1 行删除
  1. 5
    1
      interface/js/app/history.js

+ 5
- 1
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);
}

Loading…
取消
儲存