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