瀏覽代碼

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 年之前
父節點
當前提交
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…
取消
儲存