diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-05-27 05:50:01 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-05-27 05:50:01 +0800 |
commit | 4d468d806479ae1a4b50b6cfceecb4df066280c0 (patch) | |
tree | e62475a1c1ab2cb0486efcfad97ec85a0c43ae63 | |
parent | 12d89eb647ba8450ef86d9a2897fa820a8f1fe18 (diff) | |
download | tangerine-wallet-browser-4d468d806479ae1a4b50b6cfceecb4df066280c0.tar tangerine-wallet-browser-4d468d806479ae1a4b50b6cfceecb4df066280c0.tar.gz tangerine-wallet-browser-4d468d806479ae1a4b50b6cfceecb4df066280c0.tar.bz2 tangerine-wallet-browser-4d468d806479ae1a4b50b6cfceecb4df066280c0.tar.lz tangerine-wallet-browser-4d468d806479ae1a4b50b6cfceecb4df066280c0.tar.xz tangerine-wallet-browser-4d468d806479ae1a4b50b6cfceecb4df066280c0.tar.zst tangerine-wallet-browser-4d468d806479ae1a4b50b6cfceecb4df066280c0.zip |
Fix network reference part 2
-rw-r--r-- | ui/app/components/transaction-list-item.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js index fdb970f07..22f0ce1e3 100644 --- a/ui/app/components/transaction-list-item.js +++ b/ui/app/components/transaction-list-item.js @@ -19,7 +19,7 @@ function TransactionListItem() { } TransactionListItem.prototype.render = function() { - const { transaction, i } = this.props + const { transaction, i, network } = this.props var date = formatDate(transaction.time) |