From baf0c95add2772f4ea6f08788f216b5ef83557ed Mon Sep 17 00:00:00 2001 From: springmonster Date: Fri, 28 Jan 2022 18:42:36 +0800 Subject: [PATCH] =?UTF-8?q?[Bug-8169]=20[dolphinscheduler-ui]=20Fix=20`Aft?= =?UTF-8?q?er=20you=20save=20the=20workflow,=20it=E2=80=A6=20(#8198)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../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 a1876f623e..51da8238fe 100644 --- a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue +++ b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue @@ -332,11 +332,11 @@ }) if (this.type === 'instance') { this.$router.push({ - path: `/projects/${this.projectCode}/instance/list` + path: `/projects/${this.projectCode}/instance/list/${methodParam}` }) } else { this.$router.push({ - path: `/projects/${this.projectCode}/definition/list` + path: `/projects/${this.projectCode}/definition/list/${methodParam}` }) } })