This is an automated email from the ASF dual-hosted git repository.
zihaoxiang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 5cac989e45 [Fix-17864] [ApiServer] Remove STOP state for task instance
from ui (#17865)
5cac989e45 is described below
commit 5cac989e45ba5ff80fe038f7e8bd4e20dd377d96
Author: njnu-seafish <[email protected]>
AuthorDate: Sun Jan 11 13:17:35 2026 +0800
[Fix-17864] [ApiServer] Remove STOP state for task instance from ui (#17865)
---
dolphinscheduler-ui/src/common/common.ts | 8 --------
dolphinscheduler-ui/src/common/types.ts | 1 -
2 files changed, 9 deletions(-)
diff --git a/dolphinscheduler-ui/src/common/common.ts
b/dolphinscheduler-ui/src/common/common.ts
index 939e1ca8a5..99b6648730 100644
--- a/dolphinscheduler-ui/src/common/common.ts
+++ b/dolphinscheduler-ui/src/common/common.ts
@@ -215,14 +215,6 @@ export const tasksState = (t: any): ITaskStateConfig => ({
isSpin: false,
classNames: 'pause'
},
- STOP: {
- id: 5,
- desc: `${t('project.workflow.stop')}`,
- color: '#e90101',
- icon: StopOutlined,
- isSpin: false,
- classNames: 'stop'
- },
FAILURE: {
id: 6,
desc: `${t('project.workflow.failed')}`,
diff --git a/dolphinscheduler-ui/src/common/types.ts
b/dolphinscheduler-ui/src/common/types.ts
index fa6708741b..fbf06f5bc8 100644
--- a/dolphinscheduler-ui/src/common/types.ts
+++ b/dolphinscheduler-ui/src/common/types.ts
@@ -20,7 +20,6 @@ export type ITaskState =
| 'SUBMITTED_SUCCESS'
| 'RUNNING_EXECUTION'
| 'PAUSE'
- | 'STOP'
| 'FAILURE'
| 'SUCCESS'
| 'NEED_FAULT_TOLERANCE'