After going through the Angular 2 tutorial, I managed to create a search feature that asynchronously displays a list of heroes.
<div *ngFor="let hero of heroes | async">
{{hero.name}}
</div>
In my component, I have an observable array of heroes:
heroes: Observable<Hero[]>;
However, when I tried implementing a similar feature in my application, nothing appeared on the screen and no errors were reported. To investigate further, I opened the debugger in Chrome and attempted to inspect the "heroes" variable, only to find it wrapped in an Observable object.
Is there a way to view the current or last value in the debugger, or perhaps another technique to debug this type of issue?