aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tx-list.js
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-09-14 16:09:57 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-14 16:09:57 +0800
commit93a1089e085cb70ddbd58721a140ab8d3b6b79eb (patch)
tree0d9f3144de3a5f930a25f195f1568a3499ec019d /ui/app/components/tx-list.js
parentd722c1045f70954cb1a97de52cae5084a6f14815 (diff)
downloadtangerine-wallet-browser-93a1089e085cb70ddbd58721a140ab8d3b6b79eb.tar.gz
tangerine-wallet-browser-93a1089e085cb70ddbd58721a140ab8d3b6b79eb.tar.zst
tangerine-wallet-browser-93a1089e085cb70ddbd58721a140ab8d3b6b79eb.zip
Show token tx properly
Diffstat (limited to 'ui/app/components/tx-list.js')
-rw-r--r--ui/app/components/tx-list.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js
index e3578646b..7a147e942 100644
--- a/ui/app/components/tx-list.js
+++ b/ui/app/components/tx-list.js
@@ -49,7 +49,7 @@ TxList.prototype.renderTransaction = function () {
const { txsToRender, conversionRate } = this.props
return txsToRender.length
- ? txsToRender.map((transaction) => this.renderTransactionListItem(transaction, conversionRate))
+ ? txsToRender.map((transaction, i) => this.renderTransactionListItem(transaction, conversionRate))
: [h('div.tx-list-item.tx-list-item--empty', [ 'No Transactions' ])]
}
@@ -77,7 +77,8 @@ TxList.prototype.renderTransactionListItem = function (transaction, conversionRa
const { showConfTxPage } = this.props
const opts = {
- key: transactionHash,
+ key: transActionId,
+ txParams: transaction.txParams,
transactionStatus,
transActionId,
dateString,