DHBW-RaPla-Vorratsdatenspei.../Frontend/src/app/components/day/day.component.html
Patrick Müller 6b55c438f6
All checks were successful
Jenkins Production Deployment
Adding ability to hide deleted events
2021-10-02 12:13:18 +02:00

5 lines
193 B
HTML

<h1>{{weekDayName}}</h1>
<div *ngFor="let event of events">
<app-event [event]="event" *ngIf="!(!showDeletedEvents && event.changes[event.changes.length-1].is_deleted)"></app-event>
</div>