Skip to content

Commit df36eba

Browse files
committed
fix(TabletsOverall): properly hide tooltip on mouseleave
1 parent 4136392 commit df36eba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/TabletsOverall/TabletsOverall.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function TabletsOverall({tablets}: TabletsOverallProps) {
9393
<div className={b('row', {overall: true})}>
9494
<span className={b('label', {overall: true})}>Overall:</span>
9595
<div
96-
onMouseLeave={dispatch(hideTooltip)}
96+
onMouseLeave={() => dispatch(hideTooltip())}
9797
onMouseEnter={(e) => dispatch(showTooltip(e.target, tooltipData, 'tabletsOverall'))}
9898
>
9999
<Progress value={memoryProgress} stack={stack} />

0 commit comments

Comments
 (0)