This commit is contained in:
tiago.kayaya
2021-02-10 18:02:37 +01:00
parent 263bf6a21f
commit 83fb5e1cb0
2 changed files with 11 additions and 9 deletions
@@ -50,12 +50,12 @@ export class PublicationsPage implements OnInit {
}
});
}
doRefresh(event) {
doRefresh() {
/* this.getActions(); */
setTimeout(() => {
this.getActions();
event.target.complete();
/* event.target.complete(); */
}, 2000);
}
@@ -99,7 +99,7 @@ export class PublicationsPage implements OnInit {
});
await modal.present();
modal.onDidDismiss().then(()=>{
this.doRefresh(event);
this.doRefresh();
});
}