Skip to content

Commit e44738c

Browse files
committed
Fix view task status module on project homepage cannot read property label of undefined
1 parent 199a84a commit e44738c

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

  • dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums
  • dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/_source/conditions/instance

dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/ExecutionStatus.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public enum ExecutionStatus {
4242
* 11 waiting depend node complete
4343
* 12 delay execution
4444
* 13 forced success
45+
* 14 serial wait
4546
*/
4647
SUBMITTED_SUCCESS(0, "submit success"),
4748
RUNNING_EXECUTION(1, "running"),

dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/_source/conditions/instance/common.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ const stateType = [
6666
}, {
6767
code: 'FORCED_SUCCESS',
6868
label: `${i18n.$t('Forced success')}`
69+
}, {
70+
code: 'SERIAL_WAIT',
71+
label: `${i18n.$t('Serial wait')}`
6972
}
7073
]
7174

0 commit comments

Comments
 (0)