summaryrefslogtreecommitdiffhomepage
path: root/frontend/src/components/TextPopover.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/TextPopover.tsx')
-rw-r--r--frontend/src/components/TextPopover.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/frontend/src/components/TextPopover.tsx b/frontend/src/components/TextPopover.tsx
index 6eeb05835..3649e0453 100644
--- a/frontend/src/components/TextPopover.tsx
+++ b/frontend/src/components/TextPopover.tsx
@@ -18,7 +18,12 @@ const TextPopover: FunctionComponent<TextPopoverProps> = ({
}
return (
- <Tooltip label={text} {...tooltip} style={{ textWrap: "wrap" }}>
+ <Tooltip
+ label={text}
+ {...tooltip}
+ style={{ textWrap: "wrap" }}
+ events={{ hover: true, focus: false, touch: true }}
+ >
<div>{children}</div>
</Tooltip>
);