Skip to content

Commit

Permalink
Using new-password instead of off for the new/confirm passwords
Browse files Browse the repository at this point in the history
  • Loading branch information
kobelb committed Feb 10, 2020
1 parent 59d3899 commit 3e98081
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class ChangePasswordForm extends Component<Props, State> {
}
>
<EuiFieldText
autoComplete="off"
autoComplete="new-password"
data-test-subj="newPassword"
type="password"
value={this.state.newPassword}
Expand All @@ -120,7 +120,7 @@ export class ChangePasswordForm extends Component<Props, State> {
}
>
<EuiFieldText
autoComplete="off"
autoComplete="new-password"
data-test-subj="confirmNewPassword"
type="password"
value={this.state.confirmPassword}
Expand Down

0 comments on commit 3e98081

Please sign in to comment.