Skip to content

Commit 71fef9f

Browse files
Fix broken layout in AddIdentityForm
ref #1700
2 parents 6be3824 + ac1ecf2 commit 71fef9f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

portal/src/graphql/adminapi/AddIdentityForm.module.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
margin: 10px 20px;
44
font-size: 15px;
55
}
6+
7+
.widget {
8+
grid-column: 1 / span 6;
9+
}

portal/src/graphql/adminapi/AddIdentityForm.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,7 @@ const AddIdentityForm: React.FC<AddIdentityFormProps> =
184184
<LoginIDField value={form.state.loginID} onChange={onLoginIDChange} />
185185
{requirePassword && (
186186
<PasswordField
187-
className={styles.password}
188-
textFieldClassName={styles.passwordField}
187+
className={styles.widget}
189188
passwordPolicy={passwordPolicy}
190189
label={renderToString("AddUsernameScreen.password.label")}
191190
value={form.state.password}

0 commit comments

Comments
 (0)