Special charaacter bug solved

This commit is contained in:
Eudes Inácio
2023-12-01 12:19:20 +01:00
parent c978447eb1
commit d3c551dfbb
5 changed files with 62 additions and 10 deletions
+2 -2
View File
@@ -258,9 +258,9 @@
</div>
<div class="schedule-details">
<div class="description">
<p class="m-0">{{event.event.Subject}}</p>
<p class="m-0" [innerHTML]="event.event.Subject">{{event.event.Subject}}</p>
</div>
<div class="location">{{event.event.Location}}</div>
<div class="location" [innerHTML]="event.event.Location">{{event.event.Location}}</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>