diff --git a/src/components/tooltip/tooltip.tsx b/src/components/tooltip/tooltip.tsx index d4711bc1..2194df0c 100644 --- a/src/components/tooltip/tooltip.tsx +++ b/src/components/tooltip/tooltip.tsx @@ -151,7 +151,10 @@ export const Tooltip: FC = ({ onMouseDown={handleHideTooltip} onMouseEnter={handleShowTooltip} onMouseLeave={handleHideTooltip} - onFocus={handleShowTooltip} + onFocus={(e) => { + if (e.target !== e.currentTarget) return; + handleShowTooltip(); + }} onBlur={handleHideTooltip} tabIndex={0} >