Skip to content

Commit

Permalink
Fix login form password-manager support
Browse files Browse the repository at this point in the history
  • Loading branch information
rwese committed May 26, 2022
1 parent a23666a commit 13b8787
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/src/user/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class Login extends Component<Stores<'currentUser'>> {
className="name"
label="Username"
margin="dense"
autoComplete="username"
value={username}
onChange={(e) => (this.username = e.target.value)}
/>
Expand All @@ -39,6 +40,7 @@ class Login extends Component<Stores<'currentUser'>> {
className="password"
label="Password"
margin="normal"
autoComplete="current-password"
value={password}
onChange={(e) => (this.password = e.target.value)}
/>
Expand Down

0 comments on commit 13b8787

Please sign in to comment.