You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ca...@apache.org on 2022/03/18 12:26:57 UTC

[dolphinscheduler] branch 2.0.6-prepare updated: [Feature][Dag] Jump back to the list page after the workflow is saved. (#8989)

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

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


The following commit(s) were added to refs/heads/2.0.6-prepare by this push:
     new 59b5b11  [Feature][Dag] Jump back to the list page after the workflow is saved. (#8989)
59b5b11 is described below

commit 59b5b1150bad12c5027323063a34d771ec5cd6ac
Author: songjianet <17...@qq.com>
AuthorDate: Fri Mar 18 20:26:53 2022 +0800

    [Feature][Dag] Jump back to the list page after the workflow is saved. (#8989)
---
 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 5362a9a..5a8d8cc 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
@@ -331,11 +331,11 @@
                     })
                     if (this.type === 'instance') {
                       this.$router.push({
-                        path: `/projects/${this.projectCode}/instance/list/${methodParam}`
+                        path: `/projects/${this.projectCode}/instance/list`
                       })
                     } else {
                       this.$router.push({
-                        path: `/projects/${this.projectCode}/definition/list/${methodParam}`
+                        path: `/projects/${this.projectCode}/definition/list`
                       })
                     }
                   })