This commit is contained in:
tiago.kayaya
2021-06-03 16:24:17 +01:00
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
</ion-header>
<ion-content class="height-100">
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh()">
<ion-progress-bar type="indeterminate" *ngIf="showLoader"></ion-progress-bar>
<ion-refresher-content>
</ion-refresher-content>
@@ -23,7 +23,7 @@
<button class="btn-no-color" (click)="openNewGroupPage()">
<ion-icon slot="end" src="assets/images/icons-chat-new-group.svg" ></ion-icon>
</button>
<button class="btn-no-color" (click)="doRefresh($event)">
<button class="btn-no-color" (click)="doRefresh()">
<ion-icon class="title-icon" name="reload-circle"></ion-icon>
</button>
</div>
@@ -21,6 +21,6 @@ import { FilterPipe } from 'src/app/pipes/filter.pipe';
ContactsPageRoutingModule,
PipesModule,
],
declarations: [ContactsPage, FilterPipe]
declarations: [ContactsPage]
})
export class ContactsPageModule {}
@@ -22,6 +22,6 @@ import { PipesModule } from 'src/app/pipes/pipes.module';
PipesModule,
],
exports: [ContactsPage],
declarations: [ContactsPage, FilterPipe]
declarations: [ContactsPage]
})
export class ContactsPageModule {}