Skip to content

Commit 5cac989

Browse files
authored
[Fix-17864] [ApiServer] Remove STOP state for task instance from ui (#17865)
1 parent 45d3af6 commit 5cac989

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

dolphinscheduler-ui/src/common/common.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -215,14 +215,6 @@ export const tasksState = (t: any): ITaskStateConfig => ({
215215
isSpin: false,
216216
classNames: 'pause'
217217
},
218-
STOP: {
219-
id: 5,
220-
desc: `${t('project.workflow.stop')}`,
221-
color: '#e90101',
222-
icon: StopOutlined,
223-
isSpin: false,
224-
classNames: 'stop'
225-
},
226218
FAILURE: {
227219
id: 6,
228220
desc: `${t('project.workflow.failed')}`,

dolphinscheduler-ui/src/common/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ export type ITaskState =
2020
| 'SUBMITTED_SUCCESS'
2121
| 'RUNNING_EXECUTION'
2222
| 'PAUSE'
23-
| 'STOP'
2423
| 'FAILURE'
2524
| 'SUCCESS'
2625
| 'NEED_FAULT_TOLERANCE'

0 commit comments

Comments
 (0)