Sfoglia il codice sorgente

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>
master
Saúl Ibarra Corretgé 4 anni fa
parent
commit
9219e80a2a

+ 1
- 1
react/features/room-lock/components/PasswordRequiredPrompt.web.js Vedi File

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

Loading…
Annulla
Salva