From 17680c9678c7ca36757d298bf09cfd1b27a775fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eudes=20In=C3=A1cio?= Date: Tue, 24 Aug 2021 15:19:31 +0100 Subject: [PATCH] Date time conversion fixes on perfil page --- src/app/modals/profile/profile.page.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/modals/profile/profile.page.ts b/src/app/modals/profile/profile.page.ts index 6578fe6e4..2639262c7 100644 --- a/src/app/modals/profile/profile.page.ts +++ b/src/app/modals/profile/profile.page.ts @@ -100,8 +100,8 @@ export class ProfilePage implements OnInit { IdObject: element.IdObject, FolderId: element.FolderId, desc: element.desc, - dateInit: this.getFormatedTime(element.dateInit), - dateEnd: this.getFormatedTime(element.dateEnd), + dateInit: element.dateInit, + dateEnd: element.dateEnd, Location: element.Location, TypeAgenda: element.TypeAgenda, Role: element.Role,