I have an array which is obtained form a db. I have managed to display the data in the console (I can see the data in chrome console, as shown in Picture) but for some reason no data is displayed in the actual HTML page. Hello and Hello 2 are both printed but no data is printed for {{p.price}} or {{p.propertyId}}
product.component.html
<table class="table" *ngIf='properties && properties.length'>
<tbody>
<tr>Hello</tr>
<tr *ngFor="let p of properties">
<td>Hello 2</td>
<td>{{p.price}}</td>
<td>{{p.propertyId}}</td>
</tr>
</tbody>
</table>
