Ionic 4.Beta 12 - View sometimes doesn't update on data change

To manually check for changes: add this to your code:

import { ChangeDetectorRef } from '@angular/core'

constructor(private changeRef: ChangeDetectorRef)

this.changeRef.detectChanges();

15 Likes