Fix: Remove white gap in workflow HTTP headers input field (#12812)

Closes #12751 

<img width="500" alt="Screenshot 2025-06-24 at 3 39 33 PM"
src="https://github.com/user-attachments/assets/a7b28fcb-8ba4-40c8-872e-8de8ce5286be"
/>

---------

Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
Co-authored-by: Baptiste Devessier <baptiste@devessier.fr>
This commit is contained in:
Abdul Rahman
2025-07-02 22:04:52 +05:30
committed by GitHub
parent 07f75180ae
commit a19a73a977
3 changed files with 41 additions and 45 deletions

View File

@ -26,8 +26,8 @@ const StyledFormFieldInputInnerContainer = styled.div<FormFieldInputInnerContain
`
: css`
border-right: none;
border-bottom-right-radius: none;
border-top-right-radius: none;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
`}
box-sizing: border-box;

View File

@ -91,7 +91,7 @@ export const FormTextFieldInput = ({
) : null}
</FormFieldInputRowContainer>
{hint && <InputHint>{hint}</InputHint>}
<InputErrorHelper>{error}</InputErrorHelper>
{error && <InputErrorHelper>{error}</InputErrorHelper>}
</FormFieldInputContainer>
);
};