fix: group hover bug (#3699)

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
pull/3715/head
Udit Takkar 2022-08-05 14:37:06 +05:30 committed by GitHub
parent a53ca3389c
commit 2b7b03fffd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -298,7 +298,7 @@ export const EventTypeList = ({ group, groupIndex, readOnly, types }: EventTypeL
type="button"
size="icon"
color="minimal"
className={classNames(type.$disabled && " opacity-30")}
className={classNames(type.$disabled ? " opacity-30" : "group-hover:text-black")}
StartIcon={Icon.FiLink}
onClick={() => {
showToast(t("link_copied"), "success");
@ -313,7 +313,7 @@ export const EventTypeList = ({ group, groupIndex, readOnly, types }: EventTypeL
type="button"
size="icon"
color="minimal"
className={classNames(type.$disabled && " opacity-30")}
className={classNames(type.$disabled ? " opacity-30" : "group-hover:text-black")}
StartIcon={Icon.FiMoreHorizontal}
/>
</DropdownMenuTrigger>