Hello!
I’m still still relatively new to ionic2 so bear with me. I’m looking to display the steps in each array and have them displayed on my template but everything I have tried thus far hasn’t panned out. When I try the following I get [object, object], [object, object]:
<ion-item *ngFor="let data of recipeSteps">
{{data.steps}}
Also tried creating a pipe following this example but wasn’t able to get it to work as nothing would display. Any help would be appreciated.