bug on agenda, publications and refactore send file on chat

This commit is contained in:
Eudes Inácio
2023-12-27 10:28:48 +01:00
parent 2aef1d6030
commit afa1c41021
8 changed files with 19 additions and 16 deletions
+2 -2
View File
@@ -258,9 +258,9 @@
</div>
<div class="schedule-details">
<div class="description">
<p class="m-0" [innerHTML]="event.event.Subject"></p>
<p class="m-0">{{event.event.Subject}}</p>
</div>
<div class="location" [innerHTML]="event.event.Location"></div>
<div class="location">{{event.event.Subject}}</div>
<div class="font-13 calendar-owner"*ngIf="eventService.getCalendarOwnNameByCalendarId(event.event.CalendarId) == 'Meu calendario'">{{SessionStore.user.FullName}} </div>
<ng-template #other_content>{{eventService.getCalendarOwnNameByCalendarId(event.event.CalendarId)}}</ng-template>
</div>
@@ -415,9 +415,9 @@ export class NewEventPage implements OnInit {
}
this.postEvent.Attendees = this.taskParticipants.concat(this.taskParticipantsCc);
this.postEvent.Subject = this.domSanitazerService.sanitizeInput(this.postEvent.Subject);
this.postEvent.Location = this.domSanitazerService.sanitizeInput(this.postEvent.Location);
this.postEvent.Body.Text = this.domSanitazerService.sanitizeInput(this.postEvent.Body.Text);
this.postEvent.Subject = /* this.domSanitazerService.sanitizeInput( */this.postEvent.Subject/* ); */
this.postEvent.Location = /* this.domSanitazerService.sanitizeInput( */this.postEvent.Location/* ); */
this.postEvent.Body.Text = /* this.domSanitazerService.sanitizeInput( */this.postEvent.Body.Text/* ); */
let eventId: any;