I need to filter this list by the city field, picking up the text from the search field ...
<form #form="ngForm" (ngSubmit)="salvar(form)">
<ion-item>
<ion-input type="search" ng-model="pegarvalor" placeholder ="Buscar"></ion-input>
</ion-item>
<ion-item *ngFor="let cliente of lista | async">
<h2>{{cliente.nome}} --> {{cliente.idade }} ANOS</h2>
<p *ngIf="cliente.data"> Desapareceu no dia: {{cliente.data}} na cidade de: {{cliente.cidade}}</p>
<p *ngIf="cliente.descricao"> Descrição: {{cliente.descricao}}</p>
</ion-item>
</form>