This commit is contained in:
Peter Maquiran
2023-07-14 10:19:33 +01:00
parent 63abde5697
commit c62c14c30b
35 changed files with 347 additions and 40 deletions
+13 -1
View File
@@ -218,6 +218,8 @@ export class ViewEventPage implements OnInit {
}, 250);
this.isEventEdited = true;
}
}, (error) => {
console.log(error)
});
}
@@ -244,6 +246,8 @@ export class ViewEventPage implements OnInit {
}, 250);
this.isEventEdited = true;
}
}, (error) => {
console.log(error)
});
}
@@ -275,6 +279,8 @@ export class ViewEventPage implements OnInit {
}, 250);
this.isEventEdited = true;
}
}, (error) => {
console.log(error)
});
}
@@ -344,6 +350,8 @@ export class ViewEventPage implements OnInit {
await modal.present();
modal.onDidDismiss().then(res => {
//this.RouteService.goBack();
}, (error) => {
console.log(error)
});
}
@@ -367,7 +375,11 @@ export class ViewEventPage implements OnInit {
cssClass: classs,
});
await modal.present();
modal.onDidDismiss().then(async (res) => { });
modal.onDidDismiss().then(
async (res) => { },
(error) => {
console.log(error)
});
}