Merge branch 'bug/make-sure-event-meta-is-reactive' into 'master'

Bug/make sure event meta is reactive

Closes #211

See merge request framasoft/mobilizon!260
This commit is contained in:
Thomas Citharel 2019-10-13 14:21:00 +02:00
commit 717ef84ab8
1 changed files with 2 additions and 0 deletions

View File

@ -389,6 +389,7 @@ export default class Event extends EventMixin {
event.participantStats.unapproved = event.participantStats.unapproved + 1;
} else {
event.participantStats.approved = event.participantStats.approved + 1;
event.participantStats.participants = event.participantStats.participants + 1;
}
store.writeQuery({ query: FETCH_EVENT, variables: { uuid: this.uuid }, data: { event } });
@ -459,6 +460,7 @@ export default class Event extends EventMixin {
event.participantStats.unapproved = event.participantStats.unapproved - 1;
} else {
event.participantStats.approved = event.participantStats.approved - 1;
event.participantStats.participants = event.participantStats.participants - 1;
}
store.writeQuery({ query: FETCH_EVENT, variables: { uuid: this.uuid }, data: { event } });
},