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:
parent
71fb5aef6c
commit
9219e80a2a
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue