You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/07/14 09:11:49 UTC

[GitHub] [dolphinscheduler] pinkhello commented on a diff in pull request #10940: 2.0.6 fix copy bug

pinkhello commented on code in PR #10940:
URL: https://github.com/apache/dolphinscheduler/pull/10940#discussion_r920933874


##########
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/canvas/contextMenu.vue:
##########
@@ -114,9 +114,9 @@
         const targetNode = nodes.find(
           (node) => node.id === this.currentTask.code
         )
-        const targetTask = this.tasks.find(
+        const targetTask = JSON.parse(JSON.stringify(this.tasks.find(

Review Comment:
   should use lodash cloneDeep  #10611 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org