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
@@ -21,6 +21,11 @@ export class NewEventPage implements OnInit {
@Input() selectedSegment: string;
@Input() selectedDate: Date;
@Input() taskParticipants: EventPerson[];
@Input() taskParticipantsCc: any = [];
@Output() setIntervenient = new EventEmitter<any>();
@Output() setIntervenientCC = new EventEmitter<any>();
@Output() onAddEvent = new EventEmitter<any>();
@Output() openAttendeesComponent = new EventEmitter<any>();
@@ -122,6 +127,9 @@ export class NewEventPage implements OnInit {
this.onAddEvent.emit(this.postEvent);
this.GoBackEditOrAdd.emit();
this.setIntervenient.emit([]);
this.setIntervenientCC.emit([]);
}
async openAttendees(){