mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 20:01:56 +03:00
Merge pull request #1100 from esteemapp/bugfix/transaction
Fixed wrong text data for transactions
This commit is contained in:
commit
04730478c0
@ -78,7 +78,7 @@ class TransactionView extends PureComponent {
|
||||
isBlackText
|
||||
iconName={transactionData.icon}
|
||||
iconType="MaterialIcons"
|
||||
rightText={`${Math.round(value[0] * 1000) / 1000} ${value[1]}`}
|
||||
rightText={transactionData.value.trim()}
|
||||
/>
|
||||
}
|
||||
>
|
||||
|
@ -51,7 +51,7 @@ export const groomingTransactionData = (transaction, steemPerMVests, formatNumbe
|
||||
}).replace(',', '.');
|
||||
|
||||
result.value = `${sbdPayout > 0 ? `${sbdPayout} SBD` : ''} ${
|
||||
steemPayout > 0 ? `${steemPayout} steemPayout` : ''
|
||||
steemPayout > 0 ? `${steemPayout} STEEM` : ''
|
||||
} ${vestingPayout > 0 ? `${vestingPayout} SP` : ''}`;
|
||||
|
||||
result.details = author && permlink ? `@${author}/${permlink}` : null;
|
||||
|
Loading…
Reference in New Issue
Block a user