Skip to content

Commit

Permalink
Merge pull request #1383 from hypersign-protocol/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Vishwas1 authored Jun 25, 2022
2 parents 3f00b58 + ab89a24 commit 71b5d20
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/views/admin/Events.vue
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,10 @@ i {
>Participants ({{ project.investorsCount }})</a
>
</li>
<li data-toggle="tooltip" data-placement="bottom" title="Actions which participants will perform">
<i class="fa fa-tasks"></i>
Actions ({{ project.actions.length }})
</li>
</ul>
<footer>
<small>
Expand Down Expand Up @@ -704,9 +708,6 @@ export default {
break;
}
}
if(this.isProjectEditing){
this.apiCallToSaveEvent()
}
}
},
AddUpdateDelEventActions(event) {
Expand Down Expand Up @@ -1284,9 +1285,14 @@ export default {
method,
header: headers,
});
this.project.toDate=toDate
this.project.toDate=toDate;
/// Refreshing the temporary list other wise duplicate actions were showing
// see issue #1346
this.eventActionList = []
this.eventActionList = resp.data ? resp.data.actions : this.eventActionList;
return resp;
},
checkIfEverythingIsFilled() {
Expand Down

0 comments on commit 71b5d20

Please sign in to comment.