소스 검색

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>
j8
Saúl Ibarra Corretgé 5 년 전
부모
커밋
9219e80a2a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      react/features/room-lock/components/PasswordRequiredPrompt.web.js

+ 1
- 1
react/features/room-lock/components/PasswordRequiredPrompt.web.js 파일 보기

104
                     name = 'lockKey'
104
                     name = 'lockKey'
105
                     onChange = { this._onPasswordChanged }
105
                     onChange = { this._onPasswordChanged }
106
                     shouldFitContainer = { true }
106
                     shouldFitContainer = { true }
107
-                    type = 'text'
107
+                    type = 'password'
108
                     value = { this.state.password } />
108
                     value = { this.state.password } />
109
             </div>
109
             </div>
110
         );
110
         );

Loading…
취소
저장