fix(password) set input type to "password"

This will make browsers not cache results in cleartext.

Co-authored-by: Tim Dittler <t.dittler@heinlein-support.de>
This commit is contained in:
Saúl Ibarra Corretgé 2020-11-10 15:42:37 +01:00 committed by Saúl Ibarra Corretgé
parent 71fb5aef6c
commit 9219e80a2a
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class PasswordRequiredPrompt extends Component<Props, State> {
name = 'lockKey'
onChange = { this._onPasswordChanged }
shouldFitContainer = { true }
type = 'text'
type = 'password'
value = { this.state.password } />
</div>
);