diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-06 15:33:39 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-06 15:36:52 +0800 |
commit | 690ddf5ed75967537aa5513986146c262012832a (patch) | |
tree | 96f5e4dcdfa1b6f6fad68fef29ac6753488d5549 /ui/app/components/tx-list.js | |
parent | bffdde2082a64a78228b58b45778fd7886a0eceb (diff) | |
download | dexon-wallet-690ddf5ed75967537aa5513986146c262012832a.tar.gz dexon-wallet-690ddf5ed75967537aa5513986146c262012832a.tar.zst dexon-wallet-690ddf5ed75967537aa5513986146c262012832a.zip |
Fix token list
Diffstat (limited to 'ui/app/components/tx-list.js')
-rw-r--r-- | ui/app/components/tx-list.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js index b8a18970..0eb15aa7 100644 --- a/ui/app/components/tx-list.js +++ b/ui/app/components/tx-list.js @@ -65,12 +65,14 @@ TxList.prototype.renderTransactionListItem = function (transaction) { transactionAmount: formatBalance(transaction.txParams.value, 6), } const { - address = '', + address, transactionStatus, transactionAmount, dateString, } = props + if (!address) return null + return h('div', { key: transaction.id, }, [ |