aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list-item.js
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-07-12 11:32:46 +0800
committerGitHub <noreply@github.com>2016-07-12 11:32:46 +0800
commit678f33b06b2a2318ed0bf43ac9128f796161ca31 (patch)
tree2851179ad95b5de8fbb4d45ee324ac29f5424a13 /ui/app/components/transaction-list-item.js
parent45c64a0830e8c797ec585ef77c6ea1432639e3bd (diff)
parent38225ac8f5f040ea1646bd1173508ae29817b09d (diff)
downloadtangerine-wallet-browser-678f33b06b2a2318ed0bf43ac9128f796161ca31.tar
tangerine-wallet-browser-678f33b06b2a2318ed0bf43ac9128f796161ca31.tar.gz
tangerine-wallet-browser-678f33b06b2a2318ed0bf43ac9128f796161ca31.tar.bz2
tangerine-wallet-browser-678f33b06b2a2318ed0bf43ac9128f796161ca31.tar.lz
tangerine-wallet-browser-678f33b06b2a2318ed0bf43ac9128f796161ca31.tar.xz
tangerine-wallet-browser-678f33b06b2a2318ed0bf43ac9128f796161ca31.tar.zst
tangerine-wallet-browser-678f33b06b2a2318ed0bf43ac9128f796161ca31.zip
Merge pull request #427 from MetaMask/balance-refactor
Balance refactor, less-than-one abbreviation for eth balances, util cleanup
Diffstat (limited to 'ui/app/components/transaction-list-item.js')
-rw-r--r--ui/app/components/transaction-list-item.js4
1 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 4fa7b897c..2314c7107 100644
--- a/ui/app/components/transaction-list-item.js
+++ b/ui/app/components/transaction-list-item.js
@@ -2,7 +2,7 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
-const EtherBalance = require('./eth-balance-tx-history')
+const EtherBalance = require('./eth-balance')
const addressSummary = require('../util').addressSummary
const explorerLink = require('../../lib/explorer-link')
const CopyButton = require('./copyButton')
@@ -73,7 +73,7 @@ TransactionListItem.prototype.render = function () {
isTx ? h(EtherBalance, {
value: txParams.value,
- maxWidth: '55px',
+ width: '55px',
shorten: true,
}) : h('.flex-column'),
])