diff --git a/packages/twenty-server/src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts b/packages/twenty-server/src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts index 3ac94378a..dc46c8d8f 100644 --- a/packages/twenty-server/src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts +++ b/packages/twenty-server/src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts @@ -101,7 +101,7 @@ export class WorkflowRunWorkspaceEntity extends BaseWorkspaceEntity { value: WorkflowRunStatus.NOT_STARTED, label: 'Not started', position: 0, - color: 'grey', + color: 'gray', }, { value: WorkflowRunStatus.RUNNING, diff --git a/packages/twenty-server/src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts b/packages/twenty-server/src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts index cdc466fb8..c2a82e36d 100644 --- a/packages/twenty-server/src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts +++ b/packages/twenty-server/src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts @@ -48,13 +48,13 @@ const WorkflowVersionStatusOptions = [ value: WorkflowVersionStatus.DEACTIVATED, label: 'Deactivated', position: 2, - color: 'red', + color: 'orange', }, { value: WorkflowVersionStatus.ARCHIVED, label: 'Archived', position: 3, - color: 'grey', + color: 'gray', }, ]; diff --git a/packages/twenty-ui/src/input/button/components/FloatingIconButton.tsx b/packages/twenty-ui/src/input/button/components/FloatingIconButton.tsx index 328e1b75b..d43b07b94 100644 --- a/packages/twenty-ui/src/input/button/components/FloatingIconButton.tsx +++ b/packages/twenty-ui/src/input/button/components/FloatingIconButton.tsx @@ -97,8 +97,8 @@ const StyledButton = styled('button', { shouldForwardProp })< `; }} - ${({ theme, isActive }) => - isActive && + ${({ theme, disabled }) => + !disabled && css` &:hover { background: ${theme.background.transparent.lighter};