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:
commit
c396fb18fb
1 changed files with 1 additions and 1 deletions
|
|
@ -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')
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue