Merge pull request #907 from chaotixkilla/fix-customer-date-inconsistency

Fix date formatting on customer profile to use 24-hour cycle
This commit is contained in:
Rafael Taranto 2021-11-11 18:35:10 +00:00 committed by GitHub
commit c396fb18fb

View file

@ -114,7 +114,7 @@ const TransactionsList = ({ customer, data, loading }) => {
{ {
header: 'Time (h:m:s)', header: 'Time (h:m:s)',
width: 134, width: 134,
view: it => moment.utc(it.created).format('hh:mm:ss') view: it => moment.utc(it.created).format('HH:mm:ss')
} }
] ]