This is an automated email from the ASF dual-hosted git repository.
abeizn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new f53c176dd fix: not set input width in jira basic auth (#7603)
f53c176dd is described below
commit f53c176ddf7ca47bdd524624b225fb238828306e
Author: 青湛 <[email protected]>
AuthorDate: Tue Jun 11 14:46:52 2024 +1200
fix: not set input width in jira basic auth (#7603)
---
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