Skip to content

Commit

Permalink
Fixed tooltip action
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Dec 1, 2022
1 parent 2fab893 commit 5ac148f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/form/component/InfoIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function InfoIcon ({ value = '', placement='auto', ...props }) {
const translate = useTranslator();

return(
<OverlayTrigger trigger={['click']} placement={placement} overlay={(
<OverlayTrigger trigger={['hover', 'focus', 'click']} placement={placement} overlay={(
<Popover variant="info" id={value}>
<Popover.Body><Translate value={value} /></Popover.Body>
</Popover>
Expand Down

0 comments on commit 5ac148f

Please sign in to comment.