Browse Source

fix: [State.READY]: [-1, 0]

fenghao 3 years ago
parent
commit
b46cec94c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/api/base.js

+ 1 - 1
src/api/base.js

@@ -22,7 +22,7 @@ export function addTenant (data) {
 }
 
 const Status = {
-  [State.READY]: [0],
+  [State.READY]: [-1, 0],
   [State.SUBMITTED]: [1],
   [State.RESOLVED]: [2],
   [State.REJECTED]: [3, 4, 5],