aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/eth-balance.js
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-07-07 08:04:09 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-07-07 08:04:09 +0800
commit9d577ea0231802279ea0070a598f7dea9637f652 (patch)
tree2b2257b716447b15b0d90bcad3e5a7ea1d148e5e /ui/app/components/eth-balance.js
parent9d54f10dc5bd42f9103ff6c9f2094d5af81b2342 (diff)
downloadtangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.gz
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.bz2
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.lz
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.xz
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.tar.zst
tangerine-wallet-browser-9d577ea0231802279ea0070a598f7dea9637f652.zip
Add decimal hendeling to ETH balance
Diffstat (limited to 'ui/app/components/eth-balance.js')
-rw-r--r--ui/app/components/eth-balance.js34
1 files changed, 19 insertions, 15 deletions
diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js
index c7240ea21..0294d0d9f 100644
--- a/ui/app/components/eth-balance.js
+++ b/ui/app/components/eth-balance.js
@@ -2,6 +2,7 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const formatBalance = require('../util').formatBalance
+const Tooltip = require('./tooltip')
module.exports = EthBalanceComponent
@@ -30,28 +31,31 @@ EthBalanceComponent.prototype.render = function () {
)
}
EthBalanceComponent.prototype.renderBalance = function (value) {
-
if (value === 'None') return value
- var balance = value.split(' ')[0]
- var label = value.split(' ')[1]
+ var balance = value.formatted.split(' ')[0]
+ var label = value.formatted.split(' ')[1]
return (
- h('.flex-column', {
- style: {
- alignItems: 'flex-end',
- lineHeight: '13px',
- fontFamily: 'Montserrat Thin',
- textRendering: 'geometricPrecision',
- },
+ h(Tooltip, {
+ title: value.balance,
}, [
- h('div', balance),
- h('div', {
+ h('.flex-column', {
style: {
- color: ' #AEAEAE',
- fontSize: '12px',
+ alignItems: 'flex-end',
+ lineHeight: '13px',
+ fontFamily: 'Montserrat Light',
+ textRendering: 'geometricPrecision',
},
- }, label),
+ }, [
+ h('div', balance),
+ h('div', {
+ style: {
+ color: ' #AEAEAE',
+ fontSize: '12px',
+ },
+ }, label),
+ ]),
])
)
}