I am trying to read data from Firebase using AngularFire2 in Typescript. My code works with the async pipe when retrieving a list of data, but when getting an object, I cannot access the contents.
Data Structure on Firebase: (myapp.firebaseio.com/LeagueStandings)

Subset of code:
import { Component } from '@angular/core';
import { AngularFireDatabase, FirebaseObjectObservable } from 'angularfire2/database';
Standings: FirebaseObjectObservable<any[]>;
constructor(public FirebaseData:AngularFireDatabase) {
this.Standings = FirebaseData.object('/LeagueStandings');
// Added the following to see the debug
this.Standings.subscribe(data => {
console.log(data);
});
}
HTML Sample bit:
<ion-col><ion-badge color="secondary">{{Standings.Wins | async }}</ion-badge></ion-col>
The problem is that the data never shows. However, the same sort of thing on array data (individual game stats for instance) using the FirebaseData.list does work. I do not know how to easily extract the data structure for the page to display.
Adding the console dump does show the data returning from Firebase, but my home.html is not updating.

LeagueInfo? - theblindprophet