diff --git a/app/components/tooltip.js b/app/components/tooltip.js index e82e36d70..b8174be18 100644 --- a/app/components/tooltip.js +++ b/app/components/tooltip.js @@ -27,12 +27,25 @@ export default class ToolTip extends PureComponent { setToolTipVisible(); }; + hideMenu = () => { + if (this.refs.toolTip) { + this.refs.toolTip.hideMenu(); + } + }; + + showMenu = () => { + if (this.refs.toolTip) { + this.refs.toolTip.showMenu(); + } + }; + render() { return ( ); }