Improve attendies

This commit is contained in:
Peter Maquiran
2021-07-12 16:05:05 +01:00
parent 6ac7a4a715
commit 7b22c9d532
8 changed files with 24 additions and 7 deletions
@@ -176,6 +176,7 @@
(setIntervenient)="setIntervenient($event)"
(setIntervenientCC)="setIntervenientCC($event)"
(setContact)="setContact($event)"
(dynamicSetIntervenient)="dynamicSetIntervenient($event)"
></app-attendee-modal>
</div>
@@ -647,6 +647,12 @@ export class CreateProcessPage implements OnInit {
}
dynamicSetIntervenient({taskParticipants, taskParticipantsCc}){
this.taskParticipants = taskParticipants;
this.taskParticipantsCc = taskParticipantsCc;
}
async setIntervenient(data) {
this.taskParticipants = data;
}