From 3c58ed233b06460ca11fee67f9f352dbb22d77e3 Mon Sep 17 00:00:00 2001 From: BOHEUS <56270748+BOHEUS@users.noreply.github.com> Date: Thu, 13 Nov 2025 09:39:38 +0000 Subject: [PATCH] Add missing color changes in workflow steps with no data (#14967) Fixes #14888 --- .../http-request-action/components/BodyInput.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx index e21065351b..30676436cc 100644 --- a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx +++ b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx @@ -34,6 +34,7 @@ const StyledSelectDropdown = styled(Select)` margin-bottom: ${({ theme }) => theme.spacing(2)}; `; const StyledNoBodyMessage = styled.div` + color: ${({ theme }) => theme.font.color.light}; font-size: ${({ theme }) => theme.font.size.md}; padding: ${({ theme }) => theme.spacing(2)}; text-align: left;