This is an automated email from the ASF dual-hosted git repository.
mintsweet pushed a commit to branch release-v1.0
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/release-v1.0 by this push:
new 603aece24 fix: not set input width in jira basic auth (#7603) (#7604)
603aece24 is described below
commit 603aece248805f57f8ff7ded4e182a7061b2e9e8
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Jun 11 14:48:59 2024 +1200
fix: not set input width in jira basic auth (#7603) (#7604)
Co-authored-by: 青湛 <[email protected]>
---
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