Fixe bug for create or veiw event

This commit is contained in:
Peter Maquiran
2021-04-07 15:13:31 +01:00
parent bcd085e01c
commit 3f0bd5de53
5 changed files with 35 additions and 12 deletions
@@ -30,6 +30,10 @@ export class EditEventComponent implements OnInit {
@Output() openAttendeesComponent = new EventEmitter<any>();
@Output() closeComponent = new EventEmitter<any>();
@Output() setIntervenient = new EventEmitter<any>();
@Output() setIntervenientCC = new EventEmitter<any>();
constructor(
private modalController: ModalController,
@@ -73,14 +77,16 @@ export class EditEventComponent implements OnInit {
this.closeComponent.emit();
this.clearContact.emit();
this.setIntervenient.emit([]);
this.setIntervenientCC.emit([]);
}
async openAttendees()
{
async openAttendees() {
this.openAttendeesComponent.emit();
this.clearContact.emit();
}
}
}