Observable List show only [Object object]

Hi there,

I tried to use ngrx with Ionic 2 following this tutorial https://gonehybrid.com/a-beginners-guide-to-using-ngrx-in-an-ionic-2-app-part-1/

I habe a component like that:

 public inventuren: Observable<Inventur[]>;

  constructor(private store: Store<AppState>) {
      this.inventuren = this.store.select(state => state.inventuren);
  }

with this template:

  <ion-list>
    <ion-item *ngFor="let inventur of inventuren | async">
     {{inventur.beschreibung}}
    </ion-item>
  </ion-list>

The text is not showing. If I use {{inventur}} it shows [Object object]. But no property of my model is showing. The object is set up correct and the values are set.

Any ideas why I can’t see the object values?

Thanks in advance!