From 2b7b03fffd1220d8153dfc92154b86067a27bb84 Mon Sep 17 00:00:00 2001 From: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Date: Fri, 5 Aug 2022 14:37:06 +0530 Subject: [PATCH] fix: group hover bug (#3699) Co-authored-by: Peer Richelsen --- apps/web/pages/event-types/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/pages/event-types/index.tsx b/apps/web/pages/event-types/index.tsx index efe643b9c6..4a911bc2fa 100644 --- a/apps/web/pages/event-types/index.tsx +++ b/apps/web/pages/event-types/index.tsx @@ -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} />