I've got a Map<string, customObject>
and I want to iterate over it using *ngFor
.
I tried *ngFor="let mapItems of map | keyvalue"
but this one sorts the keys in ascending order. I don't want the Map to be sorted at all. The values should be displayed in the original order.
Is there a way to achieve this?