fix: group hover bug (#3699)

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
This commit is contained in:
Udit Takkar
2022-08-05 09:07:06 +00:00
committed by GitHub
co-authored by Peer Richelsen
parent a53ca3389c
commit 2b7b03fffd
+2 -2
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>