diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-12 13:14:09 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-12 13:14:09 +0800 |
commit | 062e67bff83fd79647231be6e2448d35b5f312f9 (patch) | |
tree | a624e670971853b4288eb2b622021423b37f65d5 /ui/app/components/tx-list.js | |
parent | 392d0d020c4a6efea7e0207dd0a6a70d13766241 (diff) | |
download | tangerine-wallet-browser-062e67bff83fd79647231be6e2448d35b5f312f9.tar tangerine-wallet-browser-062e67bff83fd79647231be6e2448d35b5f312f9.tar.gz tangerine-wallet-browser-062e67bff83fd79647231be6e2448d35b5f312f9.tar.bz2 tangerine-wallet-browser-062e67bff83fd79647231be6e2448d35b5f312f9.tar.lz tangerine-wallet-browser-062e67bff83fd79647231be6e2448d35b5f312f9.tar.xz 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.js | 4 |
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' ])] } |