mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-14 16:12:40 +03:00
Fixed #496
This commit is contained in:
parent
0200315189
commit
73c29fe391
@ -54,7 +54,7 @@ class TransactionView extends PureComponent {
|
||||
{transactions
|
||||
&& transactions.map((item, index) => {
|
||||
const transactionData = groomingTransactionData(item, walletData, formatNumber);
|
||||
|
||||
const value = transactionData.value.split(' ');
|
||||
return (
|
||||
<CollapsibleCard
|
||||
noBorder
|
||||
@ -75,7 +75,7 @@ class TransactionView extends PureComponent {
|
||||
isBlackText
|
||||
iconName={transactionData.icon}
|
||||
iconType="MaterialIcons"
|
||||
rightText={transactionData.value}
|
||||
rightText={`${Math.round(value[0] * 1000) / 1000} ${value[1]}`}
|
||||
/>
|
||||
)}
|
||||
>
|
||||
|
Loading…
Reference in New Issue
Block a user