This code works any where within my pages except for Popover and Modal. I get Can't bind to 'ngForOf' since it isn't a known property of 'div'
Is there any work around to this?
<div *ngFor="let u of users">
<ion-row>
<ion-col size="12">
<ion-label>
<ion-title>{{ u.first}}</ion-title>
</ion-label>
</ion-col>
</ion-row>
</div>
users: any[] = [
{
id: 1,
first: 'Alice',
last: 'Smith',
},
{
id: 2,
first: 'Bob',
last: 'Davis',
},
{
id: 3,
first: 'Charlie',
last: 'Rosenburg',
}
];