aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tx-list-item.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-12-20 01:32:32 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-12-21 02:21:36 +0800
commit109e4e5d96e31b52fcfdb22620bff113107d000c (patch)
tree2717772cb69c8a6f22e96ecd307a5f822a9b7dda /ui/app/components/tx-list-item.js
parent0feb5b210b81533fc25c4760ce33876b4c749247 (diff)
downloadtangerine-wallet-browser-109e4e5d96e31b52fcfdb22620bff113107d000c.tar.gz
tangerine-wallet-browser-109e4e5d96e31b52fcfdb22620bff113107d000c.tar.zst
tangerine-wallet-browser-109e4e5d96e31b52fcfdb22620bff113107d000c.zip
Hide fiat values on account details screen when eth/token value is 0.
Diffstat (limited to 'ui/app/components/tx-list-item.js')
-rw-r--r--ui/app/components/tx-list-item.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/tx-list-item.js b/ui/app/components/tx-list-item.js
index 4e76147a1..8a9253d4d 100644
--- a/ui/app/components/tx-list-item.js
+++ b/ui/app/components/tx-list-item.js
@@ -170,6 +170,7 @@ TxListItem.prototype.getSendTokenTotal = async function () {
TxListItem.prototype.render = function () {
const {
transactionStatus,
+ transactionAmount,
onClick,
transActionId,
dateString,
@@ -177,6 +178,7 @@ TxListItem.prototype.render = function () {
className,
} = this.props
const { total, fiatTotal } = this.state
+ const showFiatTotal = transactionAmount !== '0x0' && fiatTotal
return h(`div${className || ''}`, {
key: transActionId,
@@ -238,7 +240,7 @@ TxListItem.prototype.render = function () {
}),
}, total),
- fiatTotal && h('span.tx-list-fiat-value', fiatTotal),
+ showFiatTotal && h('span.tx-list-fiat-value', fiatTotal),
]),
]),