Is there a way to lower down the sensitivity of firing events onMouseLeave or onMouseOut. Because I want to apply them for a pop up dialog, except they are firing all the time when the mouse is over the text (i.e. div tag), only when I calm down totally then they are not firing and the pop up dialog is ok. Functionalities are obviously working but the sensitivity of mouse events is too high.
Here is my most important parts of the code:
<div className="titleUnderLogo">
<br /> <br />
{applicationDataDefinition.map((item) =>
<div className="titleUnderLogo" onMouseOver = {this.mouseOver} onMouseLeave={this.mouseLeave} /* Tried with this also onMouseOut={this.mouseOut} */ >
{item.name} {item.release} - {item.level} - {item.location}
</div>
)}
<br /> <br />
<Container >
<Dialog
displayed = {showDialog}
title="Product name"
modal={true}
layout="center"
defaultFocus="#ok"
ui="titleUnderLogoCls"
closeAction="hide"
maskTapHandler={this.mouseTapped}
onHide={() => this.setState({ showDialog: false })}
>
{applicationDataDefinition.map((item) =>
<div>
<table>
<tr>
<td> <b> Product name: </b> </td>
<td> {item.name} </td>
</tr>
<tr>
<td> <b> Release: </b> </td>
<td> {item.release} </td>
</tr>
<tr>
<td> <b> Last fix installed: </b> </td>
<td> {item.lastFix} </td>
</tr>
<tr>
<td> <b> Environment: </b> </td>
<td> {item.level} </td>
</tr>
<td> <b> Location: </b> </td>
<td> {item.location} </td>
</table>
</div>
)}
</Dialog>
</Container>
</div>