I'm currently working on using ngFor to display the binding details of the innerHtml property.
<ul>
<li *ngFor="let n of NotificationData">
{{n.NotificationID}} <label [innerHtml]="n.NotificationText | StyleHtml"></label>
</li>
</ul>
Although I attempted the code above, unfortunately, I am unable to retrieve the values for NotificationText. Any suggestions or tips would be greatly appreciated.
[![NotificationData values][1]][1]