This is an automated email from the ASF dual-hosted git repository. mintsweet pushed a commit to branch fix-jira-basic-auth-input-width in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit 85e1a230cfba99407fc1dd4dd688ef362ef4dd6a Author: mintsweet <[email protected]> AuthorDate: Tue Jun 11 14:43:13 2024 +1200 fix: not set input width in jira basic auth --- config-ui/src/plugins/register/jira/connection-fields/auth.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config-ui/src/plugins/register/jira/connection-fields/auth.tsx b/config-ui/src/plugins/register/jira/connection-fields/auth.tsx index b395b7d55..5c7329555 100644 --- a/config-ui/src/plugins/register/jira/connection-fields/auth.tsx +++ b/config-ui/src/plugins/register/jira/connection-fields/auth.tsx @@ -189,7 +189,12 @@ export const Auth = ({ type, initialValues, values, setValues, setErrors }: Prop {values.authMethod === 'BasicAuth' && ( <> <Block title="Username" required> - <Input placeholder="Your Username" value={values.username} onChange={handleChangeUsername} /> + <Input + style={{ width: 386 }} + placeholder="Your Username" + value={values.username} + onChange={handleChangeUsername} + /> </Block> <Block title="Password" required> <Input
