Force page load

I have a component having an array (loaded in ionViewCanEnter) and a pipe to filter result in 3 tabs,
like this:

Problem: when I edit my array (add or delete item), I don’t get the right result onload page (in the first load), so how can I force load page to have the right result

I used ngZone
this.zone.run(() => { this.navCtrl.setRoot(InterventionList,this.navParams) });

I know that is not the best solution :cry: