improve book meeting

This commit is contained in:
Peter Maquiran
2021-04-13 14:45:06 +01:00
parent 8b1e6b21a9
commit ef38247479
2 changed files with 6 additions and 2 deletions
@@ -183,7 +183,7 @@
</div>
<div class="aside-righ">
<div class="aside-righ flex-grow-1">
<app-attendee-modal class=" d-flex flex-column height-100"
*ngIf="showAttendees"
[taskParticipants]="taskParticipants"
@@ -81,6 +81,10 @@ export class BookMeetingModalPage implements OnInit {
this.modalController.dismiss(null);
}
saveTask(){
// issue12323423
let Attendees = this.taskParticipants.concat(this.taskParticipantsCc);
this.eventBody={
BodyType: '1',
Text: this.postData.Body.Text,
@@ -95,7 +99,7 @@ export class BookMeetingModalPage implements OnInit {
StartDate: this.postData.StartDate,
EndDate: this.postData.EndDate,
EventType: 'Reunião',
Attendees: this.eventAttendees,
Attendees: Attendees,
IsMeeting: false,
IsRecurring: false,
AppointmentState: 0,