I have a problem with my code.
I want to show all my data as ion item but it's showing nothing.
This is my HTML part :
<ion-item *ngFor = "let item of test"class="col1" col-12 style=" border: none; color:black;text-align: center;">
{{item.description}}
</ion-item>
And this is my TS part :
let item = 0;
for(let i = 0; i < this.test['0']['data'].sidelined['data'].length; i++){
let item = this.test['0']['data'].sidelined['data'][i];
this.item = item;
console.log(this.item.description);
}
Console log give me all the informations as i want to show. But HTML don't show anything.
Any idea? Thanks
test?