fix: date formatting from 'hh' to 'HH'

This commit is contained in:
Sérgio Salgado 2021-10-27 18:41:36 +01:00
parent f32d02a808
commit 2d439979ca

View file

@ -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')
}
]