@@ -95,6 +106,7 @@ export default {
},
filter: {
status: null,
+ cancelled: null,
confirmed: null,
participant_type: null
},
@@ -156,6 +168,7 @@ export default {
const filter = {}
if (this.filter.status !== null) filter.status = this.filter.status
+ if (this.filter.cancelled !== null) filter.cancelled = this.filter.cancelled
if (this.filter.confirmed !== null) filter.confirmed = this.filter.confirmed
if (this.filter.participant_type !== null) filter.participant_type = this.filter.participant_type