Is there a way to verify if an element is not undefined with a hidden-block? In other words, how can I modify the code below using a hidden-block?
<div class="timeSlot" *ngIf="timeSlot.track">
I attempted something like this
<div class="timeSlot" [hidden]="!timeSlot?.track">
However, it's not quite the same.
I am hopeful that someone has a solution for me.
Thank you