aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-05-27 05:41:11 +0800
committerDan Finlay <dan@danfinlay.com>2016-05-27 05:41:11 +0800
commit12d89eb647ba8450ef86d9a2897fa820a8f1fe18 (patch)
treebf4a3ecd1561fc1c19379cfd92ab3f93e1cd2fc6 /ui
parentf69721a98ddcbd65fb41c1fd0fa1ce6001e75ab5 (diff)
downloadtangerine-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')
-rw-r--r--ui/app/components/transaction-list-item.js2
-rw-r--r--ui/app/components/transaction-list.js2
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)
},