I have a collection of models. In template I use pipe
<div class="card-panel" *ngFor="let card of cards | sortByType">
<card-view [card]="card" [autoupdate]="true"></card-view>
</div>
In each component I have a timer for update data. But when model is updated, pipe didn't run again. Is there way to force run pipe or do some angular way in this situation.
In card-view I have a timer that updated card variable. But Angular don't catch this changes for triggering pipe