@@ -183,8 +183,8 @@
return
DataService.createProject(this.project).then(
- () => {
- this.$router.push({ name: 'projects' })
+ (project) => {
+ this.$router.push({ name: 'show_project', params: { id: project.id}})
})
}
},