We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d05587b commit 256ec5cCopy full SHA for 256ec5c
src/Shared/Components/TargetPlatforms/TargetPlatformListTooltip.tsx
@@ -1,8 +1,9 @@
1
import { Tooltip } from '@Common/Tooltip'
2
+import { stopPropagation } from '@Common/Helper'
3
import { TargetPlatformListTooltipProps } from './types'
4
5
const TooltipContent = ({ targetPlatforms }: Pick<TargetPlatformListTooltipProps, 'targetPlatforms'>) => (
- <div className="flexbox-col dc__gap-4">
6
+ <div className="flexbox-col dc__gap-4 cursor-text" onClick={stopPropagation}>
7
<h6 className="m-0 fw-6 lh-18 fs-12">Target platforms</h6>
8
9
<ul className="pl-12 m-0 dc__overflow-auto mxh-140">
0 commit comments