diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-05-27 05:41:11 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-05-27 05:41:11 +0800 |
commit | 12d89eb647ba8450ef86d9a2897fa820a8f1fe18 (patch) | |
tree | bf4a3ecd1561fc1c19379cfd92ab3f93e1cd2fc6 /ui/app | |
parent | f69721a98ddcbd65fb41c1fd0fa1ce6001e75ab5 (diff) | |
download | tangerine-wallet-browser-12d89eb647ba8450ef86d9a2897fa820a8f1fe18.tar tangerine-wallet-browser-12d89eb647ba8450ef86d9a2897fa820a8f1fe18.tar.gz tangerine-wallet-browser-12d89eb647ba8450ef86d9a2897fa820a8f1fe18.tar.bz2 tangerine-wallet-browser-12d89eb647ba8450ef86d9a2897fa820a8f1fe18.tar.lz tangerine-wallet-browser-12d89eb647ba8450ef86d9a2897fa820a8f1fe18.tar.xz tangerine-wallet-browser-12d89eb647ba8450ef86d9a2897fa820a8f1fe18.tar.zst tangerine-wallet-browser-12d89eb647ba8450ef86d9a2897fa820a8f1fe18.zip |
Fix network reference
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/components/transaction-list-item.js | 2 | ||||
-rw-r--r-- | ui/app/components/transaction-list.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js index ac74046f3..fdb970f07 100644 --- a/ui/app/components/transaction-list-item.js +++ b/ui/app/components/transaction-list-item.js @@ -107,7 +107,7 @@ function recipientField(txParams, transaction, isTx, isMsg) { } TransactionListItem.prototype.renderMessage = function() { - const { transaction, i } = this.props + const { transaction, i, network } = this.props return h('div', 'wowie, thats a message') } diff --git a/ui/app/components/transaction-list.js b/ui/app/components/transaction-list.js index 5ebb3e563..ed2e1ee0a 100644 --- a/ui/app/components/transaction-list.js +++ b/ui/app/components/transaction-list.js @@ -52,7 +52,7 @@ TransactionList.prototype.render = function() { transactions.length ? transactions.map((transaction, i) => { return h(TransactionListItem, { - transaction, i, + transaction, i, network, showTx:(txId) => { this.props.viewPendingTx(txId) }, |