use a way of unmounting the tooltip that seems to work 100% of the time
¯\_(ツ)_/¯pull/21833/head
parent
55c1c5e582
commit
44e68f16ba
|
@ -271,8 +271,8 @@ export default class InteractiveTooltip extends React.Component {
|
||||||
|
|
||||||
renderTooltip() {
|
renderTooltip() {
|
||||||
const { contentRect, visible } = this.state;
|
const { contentRect, visible } = this.state;
|
||||||
ReactDOM.unmountComponentAtNode(getOrCreateContainer());
|
|
||||||
if (this.props.forceHidden === true || !visible) {
|
if (this.props.forceHidden === true || !visible) {
|
||||||
|
ReactDOM.render(null, getOrCreateContainer());
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue