You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 4, 2020. It is now read-only.
I am using angularfire2-offline in my application. I am storing array of students objects.
some thing similar to
students: AfoListObservable<any[]>;
students = afoDatabase.list('/students');
On the UI, <button ion-item *ngFor="let patient of studnets | async" >{{student.name}} - {{student.age}}</button>
I would like to display some icon on this button based on whether particular student object is updated in firebase or not?