From f7955a9040d1af73ded0521866e121dc701698f5 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 10 Dec 2025 17:02:11 +0200 Subject: [PATCH] fix(client/dropdown): tooltip flickering due to child elements --- apps/client/src/widgets/react/Dropdown.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/react/Dropdown.tsx b/apps/client/src/widgets/react/Dropdown.tsx index 5416e38ac..dec0660c0 100644 --- a/apps/client/src/widgets/react/Dropdown.tsx +++ b/apps/client/src/widgets/react/Dropdown.tsx @@ -117,8 +117,8 @@ export default function Dropdown({ id, className, buttonClassName, isStatic, chi aria-expanded="false" id={id ?? ariaId} disabled={disabled} - onMouseOver={() => showTooltip()} - onMouseLeave={() => hideTooltip()} + onMouseEnter={showTooltip} + onMouseLeave={hideTooltip} {...buttonProps} > {text}