bugs solved

This commit is contained in:
Eudes Inácio
2023-08-11 16:14:25 +01:00
parent 2bfec82113
commit 408f68b22e
20 changed files with 263 additions and 129 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
<ion-input [(ngModel)]='sender' class="search-input" type="search" placeholder="Pesquisar" (ngModelChange)="filterContact($event)" ></ion-input>
</div>
<ul>
<li *ngFor="let contact of showContacts" (click)="selectUser(contact.Name)">
<li *ngFor="let contact of showContacts" (click)="selectUser(contact)">
{{ contact.Name }}
</li>
</ul>
+1 -1
View File
@@ -48,7 +48,7 @@ export class SenderPage implements OnInit {
this.showContacts = persons;
}
selectUser(username:string){
selectUser(username){
this.selectedUser = username;
this.close(this.selectedUser);
}