diff --git a/services/web/frontend/js/features/ui/components/bootstrap-5/tooltip.tsx b/services/web/frontend/js/features/ui/components/bootstrap-5/tooltip.tsx index ac7dcb3858..5582a00ca7 100644 --- a/services/web/frontend/js/features/ui/components/bootstrap-5/tooltip.tsx +++ b/services/web/frontend/js/features/ui/components/bootstrap-5/tooltip.tsx @@ -100,9 +100,11 @@ function Tooltip({ show={show} onToggle={setShow} > - {cloneElement(children, { - onClick: callFnsInSequence(children.props.onClick, hideTooltip), - })} + {overlayProps?.trigger === 'click' + ? children + : cloneElement(children, { + onClick: callFnsInSequence(children.props.onClick, hideTooltip), + })} ) }