You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by so...@apache.org on 2022/03/09 14:16:41 UTC

[dolphinscheduler] branch dev updated: [Fix][UI Next][V1.0.0-Alpha] Fix workflow duplicate key error bug (#8782)

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 <de...@gmail.com>
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
         }