From 2d439979cadb881ccc554e0673c48a3f6c60dc68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20Salgado?= Date: Wed, 27 Oct 2021 18:41:36 +0100 Subject: [PATCH] fix: date formatting from 'hh' to 'HH' --- .../src/pages/Customers/components/TransactionsList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new-lamassu-admin/src/pages/Customers/components/TransactionsList.js b/new-lamassu-admin/src/pages/Customers/components/TransactionsList.js index 6d5d39fc..8cb6de32 100644 --- a/new-lamassu-admin/src/pages/Customers/components/TransactionsList.js +++ b/new-lamassu-admin/src/pages/Customers/components/TransactionsList.js @@ -114,7 +114,7 @@ const TransactionsList = ({ customer, data, loading }) => { { header: 'Time (h:m:s)', width: 134, - view: it => moment.utc(it.created).format('hh:mm:ss') + view: it => moment.utc(it.created).format('HH:mm:ss') } ]