Hi, I am very new to Angular, using version 5 I have an issue with some components inside an *ngFor loop, something ressembling this:
<div *ngFor="let item of dbData | async; let id=index;"> <child-component [param1]="item.param1" param2="item.param2" ></child-component> </div> dbData variable is an array of Observables from firebase. And when the data changes, it correctly updates in the view, but it also resets all the child-component's parameters to their default state. Is that normal behaviour ? If yes, is there a way around it ? -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
