diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-09-07 07:45:06 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-09-07 07:45:06 +0800 |
commit | 09dd854a96c2756be02d5043be40089a097cadc1 (patch) | |
tree | 6655bd79eb0ae35d3630fa88995cb15b2f5f26d0 /ui/app/accounts | |
parent | 58a8f02294eb1079d92cdf1e6d05a74a224029c3 (diff) | |
download | tangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.tar tangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.tar.gz tangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.tar.bz2 tangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.tar.lz tangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.tar.xz tangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.tar.zst tangerine-wallet-browser-09dd854a96c2756be02d5043be40089a097cadc1.zip |
Nearly finished factoring fiat value into eth-balance
Diffstat (limited to 'ui/app/accounts')
-rw-r--r-- | ui/app/accounts/account-list-item.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/accounts/account-list-item.js b/ui/app/accounts/account-list-item.js index aa80e0e23..0b4acdfec 100644 --- a/ui/app/accounts/account-list-item.js +++ b/ui/app/accounts/account-list-item.js @@ -3,7 +3,7 @@ const h = require('react-hyperscript') const inherits = require('util').inherits const ethUtil = require('ethereumjs-util') -const AccountEtherBalance = require('../components/account-eth-balance') +const EthBalance = require('../components/eth-balance') const CopyButton = require('../components/copyButton') const Identicon = require('../components/identicon') @@ -50,7 +50,7 @@ NewComponent.prototype.render = function () { textOverflow: 'ellipsis', }, }, ethUtil.toChecksumAddress(identity.address)), - h(AccountEtherBalance, { + h(EthBalance, { value: account.balance, style: { lineHeight: '7px', |