Fix merge

This commit is contained in:
Peter Maquiran
2021-06-23 15:53:14 +01:00
68 changed files with 361 additions and 388 deletions
@@ -283,7 +283,7 @@ export class PedidoPage implements OnInit {
const modal = await this.modalController.create({
component: BookMeetingModalPage,
componentProps: {
task: this.task,
task: task,
},
cssClass: classs,
backdropDismiss: false
@@ -6,8 +6,8 @@
<app-btn-modal-dismiss (click)="goBack()"></app-btn-modal-dismiss>
<div class="title">
<div class="thetitle"><ion-label >Pedidos</ion-label></div>
<div class="theicon">
<button class="btn-no-color" (click)="doRefresh()">
<div class="theicon btn-refresh">
<button class="btn-no-color" (click)="doRefresh($event)">
<ion-icon slot="end" class="title-icon" name="reload-circle"></ion-icon>
</button>
</div>
@@ -27,7 +27,7 @@
<ion-content>
<div class="main-content">
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh()">
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
<ion-refresher-content
pullingIcon="chevron-down-circle-outline"
pullingText="deslize para actualizar"
@@ -168,9 +168,10 @@ export class PedidosPage implements OnInit {
console.log(this.taskType);
}
doRefresh() {
doRefresh(event) {
this.LoadList();
setTimeout(() => {
event.target.complete();
}, 2000);
}