mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
fix: fix to display tooltip on hover (#19058)
This commit is contained in:
@@ -134,7 +134,12 @@ export const Combobox: FC<ComboboxProps> = ({
|
||||
<TooltipProvider delayDuration={100}>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<Info className="w-3.5 h-3.5 text-content-secondary" />
|
||||
<span
|
||||
className="flex"
|
||||
onMouseEnter={(e) => e.stopPropagation()}
|
||||
>
|
||||
<Info className="w-3.5 h-3.5 text-content-secondary" />
|
||||
</span>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent side="right" sideOffset={10}>
|
||||
{option.description}
|
||||
|
||||
Reference in New Issue
Block a user