Discussion for angular (2+) - need help? create a stackblitz with your issue to get help faster using this template: https://stackblitz.com/fork/angular-issue-repro2
Store.value
this.friends = friendsService.friends
ngFor
them in a list like this: *ngFor="#friend of firends | async" [routerLink]="['./Friend', {'id': friend.id}]"
Friend
component I need an empty Friend object in order to render the template for the first time (until Friend Object arrives). How do you deal with it?
repoDetails = {};
) but no elvis in the template. I get something like "No property name of undefined". Why that works in your case? First time the template gets rendered, it only hasrepoDetails = {};
until real repoDetails
arrives via subscribe
, right?