aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tx-list.js
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-09-12 13:14:09 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-12 13:14:09 +0800
commit062e67bff83fd79647231be6e2448d35b5f312f9 (patch)
treea624e670971853b4288eb2b622021423b37f65d5 /ui/app/components/tx-list.js
parent392d0d020c4a6efea7e0207dd0a6a70d13766241 (diff)
downloadtangerine-wallet-browser-062e67bff83fd79647231be6e2448d35b5f312f9.tar.gz
tangerine-wallet-browser-062e67bff83fd79647231be6e2448d35b5f312f9.tar.zst
tangerine-wallet-browser-062e67bff83fd79647231be6e2448d35b5f312f9.zip
Add buttons; handle back; add yarn.lock
Diffstat (limited to 'ui/app/components/tx-list.js')
-rw-r--r--ui/app/components/tx-list.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js
index 26782900c..a7d11203d 100644
--- a/ui/app/components/tx-list.js
+++ b/ui/app/components/tx-list.js
@@ -49,9 +49,7 @@ TxList.prototype.renderTranstions = function () {
const { txsToRender } = this.props
return txsToRender.length
- ? txsToRender.map((transaction) => {
- return this.renderTransactionListItem(transaction)
- })
+ ? txsToRender.map((transaction) => this.renderTransactionListItem(transaction))
: [h('div.tx-list-item.tx-list-item--empty', [ 'No Transactions' ])]
}