remove console.logs

This commit is contained in:
Peter Maquiran
2022-06-29 15:51:28 +01:00
parent 2fad8c305a
commit 7fd256905d
22 changed files with 33 additions and 41 deletions
@@ -77,7 +77,7 @@ export class DocumentDetailPage implements OnInit {
} else if (document.ApplicationID == 8 || document.ApplicationId == 8) {
} else {
console.log('unexpected id')
// console.log('unexpected id')
}
@@ -42,7 +42,7 @@ ngOnInit() {
this.image = this.navParams.get('image')
this.name = this.navParams.get('username')
this._updatedAt = this.navParams.get('_updatedAt')
console.log(this.image)
// console.log(this.image)
// this.image = this.myimage
}
+2 -2
View File
@@ -52,7 +52,7 @@ export class ProfilePage implements OnInit {
ngOnInit() {
if (this.platform.is('desktop') || this.platform.is('mobileweb')) {
console.log('Notifications not supported')
// console.log('Notifications not supported')
this.getNotificationData();
} else {
this.getNotificationData();
@@ -138,7 +138,7 @@ export class ProfilePage implements OnInit {
notificatinsRoutes = (index, Service, Object, IdObject, FolderId) => {
console.log(index, Service, Object, IdObject, FolderId)
// console.log(index, Service, Object, IdObject, FolderId)
if (Service === "agenda" && IdObject.length > 10) {
this.zone.run(() => this.router.navigate(['/home/agenda', IdObject, 'agenda']));
@@ -77,7 +77,7 @@ export class ViewDocumentPage implements OnInit {
} else if(res.data.component == 'openExpedientActionsModal') {
this.openExpedientActionsModal(res.data.taskAction)
} else {
console.log('not found')
// console.log('not found')
}
}