agendaTemplate is passing every day of the week even if no events are present

agendaTemplate is passing every day of the week even if no events are present. If I remove the agendaTemplate property then it works as expected. <ng-template #agendaTemplate let-data> data contains each day regardless of events and it never use to do this. I’m not sure what changed or what can be done at this point. See attached.

Hi Kyle,

I wanted to follow up on this issue here in the forum as well. The behavior you’re experiencing with the agenda is due to product modifications in version 5.29.2. To resolve this, I suggest using an *ngIf directive to ensure that the agenda only renders if there are events. For example:

<div *ngIf="day.events.length">
  <!-- rendering code -->
</div>