mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-22 11:43:34 +03:00
fix: bookmarkIcon flash on hover exit (#8448)
Fixes: #8447 Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
parent
c19e54f24b
commit
29d92abaff
@ -64,7 +64,7 @@ export const MultiItemFieldMenuItem = <T,>({
|
||||
onMouseLeave={handleMouseLeave}
|
||||
text={<DisplayComponent value={value} />}
|
||||
isIconDisplayedOnHoverOnly={!isPrimary && !isDropdownOpen}
|
||||
RightIcon={isHovered ? null : IconBookmark}
|
||||
RightIcon={!isHovered && isPrimary ? IconBookmark : null}
|
||||
dropdownId={dropdownId}
|
||||
dropdownContent={
|
||||
<DropdownMenuItemsContainer>
|
||||
|
Loading…
Reference in New Issue
Block a user