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
overlay
is marked as required inOverlayTrigger
, but its value isnull
Would this be the only way?
{!this.state.show ? {component} :
<OverlayTrigger ...>
{component}
</OverlayTrigger>
}
The
OverlayTrigger
component must have aoverlay
prop 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.show
is falsy.Edit: Yes, the code in your update would be the way to do it.