fix agenda calendar names

This commit is contained in:
Peter Maquiran
2022-07-04 18:15:55 +01:00
parent d8d1fc7b0c
commit e625fbfeb2
2 changed files with 32 additions and 32 deletions
@@ -165,7 +165,7 @@ export class NewEventPage implements OnInit {
this.eventBody = { BodyType : "1", Text : ""};
this.postEvent.Body = this.eventBody;
if(this.selectedSegment != "Combinada"){
if(this.selectedSegment != "Combinada") {
this.postEvent ={
EventId: '',
Subject: '',
@@ -188,7 +188,7 @@ export class NewEventPage implements OnInit {
};
}
else{
this.postEvent ={
this.postEvent = {
EventId: '',
Subject: '',
Body: this.eventBody,
@@ -207,11 +207,11 @@ export class NewEventPage implements OnInit {
Category: 'Reunião',
HasAttachments: false,
EventRecurrence: {Type:'-1',LastOccurrence:this.autoEndTime},
};
}
}
if(this.postEvent.Attendees != null) {
this.postEvent.Attendees.forEach(e =>{
this.postEvent.Attendees.forEach(e => {
if(e.IsRequired) {
this.taskParticipants.push(e);
} else {