Skip to content

Commit

Permalink
Merge pull request #1699 from hypersign-protocol/develop
Browse files Browse the repository at this point in the history
project api calling 2 times bug fixed in participants.vue page
  • Loading branch information
Vishwas1 authored Sep 20, 2022
2 parents 278bd2a + 0c87730 commit a79b27c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/views/admin/Participants.vue
Original file line number Diff line number Diff line change
Expand Up @@ -412,9 +412,11 @@ computed:{
if (this.$route.query.projectId) {
this.selectedProjectId = this.$route.query.projectId;
this.selectedProject = this.$route.query.projectId;
if(!this.$route.query.projectId){
await this.fetchProjectData(0, this.perPage);
}
eventBus.$emit("setForParticipant",this.selectedProject);
this.investor.projectId = this.$route.query.projectId;
await this.fetchProjectData(0, this.perPage);
this.holdInvestors = this.project.investors;
}
Expand Down

0 comments on commit a79b27c

Please sign in to comment.