diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | ui/app/components/eth-balance.js | 1 | ||||
-rw-r--r-- | ui/app/components/tooltip.js | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bee30518..8cb788a0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## Current Master + +- Fix formatting of ETH balance - Fix formatting of account details. ## 2.5.0 2016-06-29 diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js index 0294d0d9f..510b620f3 100644 --- a/ui/app/components/eth-balance.js +++ b/ui/app/components/eth-balance.js @@ -39,6 +39,7 @@ EthBalanceComponent.prototype.renderBalance = function (value) { return ( h(Tooltip, { title: value.balance, + position: 'bottom', }, [ h('.flex-column', { style: { diff --git a/ui/app/components/tooltip.js b/ui/app/components/tooltip.js index 4eab8611e..fb67c717e 100644 --- a/ui/app/components/tooltip.js +++ b/ui/app/components/tooltip.js @@ -14,7 +14,7 @@ Tooltip.prototype.render = function () { const props = this.props return h(ReactTooltip, { - position: 'left', + position: props.position ? props.position : 'left', title: props.title, fixed: false, }, props.children) |