This commit is contained in:
tiago.kayaya
2021-03-30 15:35:22 +01:00
parent 52fafe05e4
commit 3597466850
8 changed files with 45 additions and 23 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ export class SenderPage implements OnInit {
});
}
filterContact(){
filterContact(event?:any){
const findPerson = this.sender.toLowerCase();
const persons = this.contacts.filter((person) => {
@@ -52,7 +52,7 @@ export class SenderPage implements OnInit {
this.close(this.selectedUser);
}
close(username: string){
close(username?: string){
this.modalController.dismiss(username);
}