I want to bind a nested objects property name using angular interpolation
<ng-container ngFor="let item of saleDetailsAggegater.productMap | keyvalue">
<tr *ngFor="let qtyMap of item.value | keyvalue">
<td>{{ item.key }}</td>
<td>{{qtyMap.value}}</td>
<td>{{Object.keys(qtyMap)[0]}}</td>
</tr>
</ng-container>
my saledetailsAggegater object is as follows
{"productMap":{"55478":{"priceQuantityMap":{"200.00":10}}},"taxMap":{},"paymentMap":{"1":970},"total":970}
but this line is not working as expected
<td>{{Object.keys(qtyMap)[0]}}</td>
how can i achieve this?