Fix view task status module on project homepage cannot read property label of undefined (#6956)
parent
631a31b6ac
commit
f0630bc9a0
|
|
@ -42,6 +42,7 @@ public enum ExecutionStatus {
|
|||
* 11 waiting depend node complete
|
||||
* 12 delay execution
|
||||
* 13 forced success
|
||||
* 14 serial wait
|
||||
*/
|
||||
SUBMITTED_SUCCESS(0, "submit success"),
|
||||
RUNNING_EXECUTION(1, "running"),
|
||||
|
|
|
|||
|
|
@ -66,6 +66,9 @@ const stateType = [
|
|||
}, {
|
||||
code: 'FORCED_SUCCESS',
|
||||
label: `${i18n.$t('Forced success')}`
|
||||
}, {
|
||||
code: 'SERIAL_WAIT',
|
||||
label: `${i18n.$t('Serial wait')}`
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue