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:
@ -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;
|
||||
|
||||
@ -91,7 +91,7 @@ export const FormTextFieldInput = ({
|
||||
) : null}
|
||||
</FormFieldInputRowContainer>
|
||||
{hint && <InputHint>{hint}</InputHint>}
|
||||
<InputErrorHelper>{error}</InputErrorHelper>
|
||||
{error && <InputErrorHelper>{error}</InputErrorHelper>}
|
||||
</FormFieldInputContainer>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user