aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/eth-balance.js1
-rw-r--r--ui/app/components/tooltip.js2
2 files changed, 2 insertions, 1 deletions
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)