From 0d1f8d880d485bd41e1ff958414c884c55e2cadd Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Sat, 28 Dec 2024 18:50:35 -0300 Subject: [PATCH] chore: display notifications Signed-off-by: Vitor Mattos --- src/views/Validation.vue | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/src/views/Validation.vue b/src/views/Validation.vue index 8b46c9229..6b7a6a55c 100644 --- a/src/views/Validation.vue +++ b/src/views/Validation.vue @@ -48,8 +48,8 @@

{{ t('libresign', 'Signatories:') }}

@@ -203,9 +219,12 @@ export default { } }, methods: { - formatDate(date) { + dateFromSqlAnsi(date) { return Moment(Date.parse(date)).format('LL LTS') }, + dateFromUnixTimestamp(date) { + return Moment(date * 1000).format('LL LTS') + }, toggleDetail(signer) { this.$set(signer, 'opened', !signer.opened) },