aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tooltip.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-08-29 06:50:40 +0800
committerDan <danjm.com@gmail.com>2017-08-29 22:56:32 +0800
commitdc72c4cc918934b8dafc253ca5e7c9674551aa51 (patch)
tree549b8aa8e4fe02f8cf5c193b4d2b71edbc67d160 /ui/app/components/tooltip.js
parentaf6e30b8baaed258381fd050b98452de0844d9c6 (diff)
downloadtangerine-wallet-browser-dc72c4cc918934b8dafc253ca5e7c9674551aa51.tar.gz
tangerine-wallet-browser-dc72c4cc918934b8dafc253ca5e7c9674551aa51.tar.zst
tangerine-wallet-browser-dc72c4cc918934b8dafc253ca5e7c9674551aa51.zip
Using eth balance component to ensure proper rounding.
Diffstat (limited to 'ui/app/components/tooltip.js')
-rw-r--r--ui/app/components/tooltip.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/tooltip.js b/ui/app/components/tooltip.js
index edbc074bb..74cf1ae43 100644
--- a/ui/app/components/tooltip.js
+++ b/ui/app/components/tooltip.js
@@ -12,7 +12,7 @@ function Tooltip () {
Tooltip.prototype.render = function () {
const props = this.props
- const { position, title, children } = props
+ const { position, title, children, show = true } = props
return h(ReactTooltip, {
position: position || 'left',