This is an automated email from the ASF dual-hosted git repository.
songjian 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 5ca886f [Fix][UI Next][V1.0.0-Alpha] Fix workflow duplicate key error
bug (#8782)
5ca886f is described below
commit 5ca886fdd1532328577e02ec3a5db38ac6268442
Author: Devosend <[email protected]>
AuthorDate: Wed Mar 9 22:16:33 2022 +0800
[Fix][UI Next][V1.0.0-Alpha] Fix workflow duplicate key error bug (#8782)
---
.../src/views/projects/workflow/components/dag/use-task-edit.ts | 1 +
1 file changed, 1 insertion(+)
diff --git
a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts
b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts
index 08e272b..f65a31d 100644
---
a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts
+++
b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts
@@ -124,6 +124,7 @@ export function useTaskEdit(options: Options) {
setNodeName(task.code + '', taskDef.name)
return {
...taskDef,
+ version: task.version,
code: task.code,
taskType: currTask.value.taskType
}