Browse Source

[Feature][Dag] Jump back to the list page after the workflow is saved. (#8989)

2.0.7-release
songjianet 3 years ago committed by GitHub
parent
commit
59b5b1150b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/dag.vue

4
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`
})
}
})

Loading…
Cancel
Save