Fix TextWithTooltip "leaking" tooltip wrappers
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
9d6bf366a9
commit
e7ec34e61e
1 changed files with 2 additions and 3 deletions
|
@ -47,11 +47,10 @@ export default class TextWithTooltip extends React.Component {
|
||||||
return (
|
return (
|
||||||
<span onMouseOver={this.onMouseOver} onMouseLeave={this.onMouseLeave} className={this.props.class}>
|
<span onMouseOver={this.onMouseOver} onMouseLeave={this.onMouseLeave} className={this.props.class}>
|
||||||
{this.props.children}
|
{this.props.children}
|
||||||
<Tooltip
|
{this.state.hover && <Tooltip
|
||||||
label={this.props.tooltip}
|
label={this.props.tooltip}
|
||||||
visible={this.state.hover}
|
|
||||||
tooltipClassName={this.props.tooltipClass}
|
tooltipClassName={this.props.tooltipClass}
|
||||||
className={"mx_TextWithTooltip_tooltip"} />
|
className={"mx_TextWithTooltip_tooltip"} /> }
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue