From 1393b4f595afb2fd55a82716dc9fd4b9d5214332 Mon Sep 17 00:00:00 2001 From: Peter Maquiran Date: Mon, 9 Aug 2021 15:47:36 +0100 Subject: [PATCH] improve --- src/app/modals/document-detail/document-detail.page.html | 3 ++- src/app/modals/document-detail/document-detail.page.ts | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/modals/document-detail/document-detail.page.html b/src/app/modals/document-detail/document-detail.page.html index a8e5c925a..3e04cfb92 100644 --- a/src/app/modals/document-detail/document-detail.page.html +++ b/src/app/modals/document-detail/document-detail.page.html @@ -24,7 +24,8 @@
-
Intervenientes
+
Intervenientes
+
Remetente
diff --git a/src/app/modals/document-detail/document-detail.page.ts b/src/app/modals/document-detail/document-detail.page.ts index 1b05356f2..9e1c1dc64 100644 --- a/src/app/modals/document-detail/document-detail.page.ts +++ b/src/app/modals/document-detail/document-detail.page.ts @@ -36,7 +36,7 @@ export class DocumentDetailPage implements OnInit { private menu: MenuController, private iab: InAppBrowser, public p: PermissionService, - ) { + ) { this.docId = this.navParams.get('docId'); this.applicationId = this.navParams.get('applicationId'); } @@ -72,9 +72,11 @@ export class DocumentDetailPage implements OnInit { this.menu.open(); this.modalController.dismiss(); } + close() { this.modalController.dismiss(); } + notImplemented() { this.alertService.presentAlert('Funcionalidade em desenvolvimento'); }