Skip to content

Commit

Permalink
feat(web): new project query arg
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Jan 27, 2025
1 parent 628f7ec commit 4e0d9d0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions web/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1122,6 +1122,10 @@ export default {
EventBus.$emit('i-show-task', { taskId });
}
}
if (this.projects.length > 0 && this.$route.query.new_project != null) {
EventBus.$emit('i-new-project', { projectType: this.$route.query.new_project });
}
},
async trySelectMostSuitableProject() {
Expand Down

0 comments on commit 4e0d9d0

Please sign in to comment.