Skip to content

Commit

Permalink
[frontend] Fix tooltip issue(#6036)
Browse files Browse the repository at this point in the history
  • Loading branch information
CelineSebe committed Feb 28, 2024
1 parent 4ded3bf commit 3d99ec7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export const FilterChipPopover: FunctionComponent<FilterChipMenuProps> = ({
? filterValues.filter((fVal) => fVal && fVal.key === subKey && fVal.values.includes(option.value)).length > 0
: filterValues.includes(option.value);
return (
<Tooltip title={option.label} key={option.label}>
<Tooltip title={option.label} key={option.label} followCursor={true}>
<li
{...props}
onKeyDown={(e) => {
Expand Down

0 comments on commit 3d99ec7

Please sign in to comment.