Is there a way to hide the OverlayTrigger/Tooltip element by default?
eg. overlay={this.state.show ? <Tooltip>showing</Tooltip> : null} works but throws a warning on console:
The prop
overlayis marked as required inOverlayTrigger, but its value isnull
Would this be the only way?
{!this.state.show ? {component} :
<OverlayTrigger ...>
{component}
</OverlayTrigger>
}
The
OverlayTriggercomponent must have aoverlayprop passed. If you don't want the tooltip, you also don't want an overlay to trigger. Hence, you'd want to remove it ifthis.state.showis falsy.Edit: Yes, the code in your update would be the way to do it.