Avoid giving an error page if the apollo futureParticipations query is
undefined Closes #932 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
83783ad34b
commit
506a6dd4c7
@ -434,6 +434,7 @@ export default class MyEvents extends Vue {
|
||||
|
||||
loadMoreFutureParticipations(): void {
|
||||
this.futurePage += 1;
|
||||
if (this.$apollo.queries.futureParticipations) {
|
||||
this.$apollo.queries.futureParticipations.fetchMore({
|
||||
// New variables
|
||||
variables: {
|
||||
@ -442,9 +443,11 @@ export default class MyEvents extends Vue {
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
loadMorePastParticipations(): void {
|
||||
this.pastPage += 1;
|
||||
if (this.$apollo.queries.pastParticipations) {
|
||||
this.$apollo.queries.pastParticipations.fetchMore({
|
||||
// New variables
|
||||
variables: {
|
||||
@ -453,6 +456,7 @@ export default class MyEvents extends Vue {
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
eventDeleted(eventid: string): void {
|
||||
this.futureParticipations = this.futureParticipations.filter(
|
||||
|
Loading…
Reference in New Issue
Block a user