fix: display fiat amount and currency on same line

This commit is contained in:
José Oliveira 2021-03-01 17:18:22 +00:00 committed by Josh Harvey
parent 27b98b7f55
commit d2f1b6ec4c

View file

@ -117,7 +117,7 @@ const Transactions = () => {
}, },
{ {
header: 'Cash', header: 'Cash',
width: 104, width: 110,
textAlign: 'right', textAlign: 'right',
size: 'sm', size: 'sm',
view: it => `${Number.parseFloat(it.fiat)} ${it.fiatCode}` view: it => `${Number.parseFloat(it.fiat)} ${it.fiatCode}`
@ -144,7 +144,7 @@ const Transactions = () => {
view: it => moment.utc(it.created).format('YYYY-MM-DD'), view: it => moment.utc(it.created).format('YYYY-MM-DD'),
textAlign: 'right', textAlign: 'right',
size: 'sm', size: 'sm',
width: 130 width: 135
}, },
{ {
header: 'Time (UTC)', header: 'Time (UTC)',