For my app I need to force update the *ngFor component.
Any way to force update it from my code for example with a updateList function?
I'm using a firebasepipe to get the child_added event to update the ngfor. I need to remove an entry and add an entry at the same time but it only updates things that get added.
<li *ngFor="#quote of firebaseUrl | firebaseevent:'child_added'"> <strong>"{{quote.text}}"</strong> </li>