This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch 1.3.9-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/1.3.9-prepare by this push:
     new f28faae  fix sub_process node open sub_task show empty page (#6522)
f28faae is described below

commit f28faaeabb0bd9d6591cc9f471122f2a90e4b5c6
Author: Kerwin <[email protected]>
AuthorDate: Wed Oct 13 19:03:43 2021 +0800

    fix sub_process node open sub_task show empty page (#6522)
---
 dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue 
b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue
index d1cc037..2d91b9c 100755
--- a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue
@@ -452,7 +452,7 @@
           query = { subProcessIds: ids.join(',') }
         }
         let $name = this.$route.name.split('-')
-        this.$router.push({ path: `/${$name[0]}/${$name[1]}/list/${id}`, 
query: query })
+        this.$router.push({ path: 
`/${$name[0]}/${this.projectId}/${$name[1]}/list/${id}`, query: query })
       },
       /**
        * Subprocess processing
@@ -469,7 +469,7 @@
           subProcessIds.push(this.urlParam.id)
         }
         let $name = this.$route.name.split('-')
-        this.$router.push({ path: 
`/${$name[0]}/${$name[1]}/list/${subProcessId}`, query: { subProcessIds: 
subProcessIds.join(',') } })
+        this.$router.push({ path: 
`/${$name[0]}/${this.projectId}/${$name[1]}/list/${subProcessId}`, query: { 
subProcessIds: subProcessIds.join(',') } })
       },
       /**
        * Refresh data

Reply via email to