fix: use html password type for password and credential inputs (#1824)

This commit is contained in:
Joshua 2024-04-15 19:19:20 +02:00 committed by GitHub
parent 12263a71b6
commit ac610f9ea3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -107,7 +107,7 @@ const ClientCertSettings = ({ clientCertConfig, onUpdate, onRemove }) => {
</label>
<input
id="passphrase"
type="text"
type="password"
name="passphrase"
className="block textbox"
onChange={formik.handleChange}

View File

@ -279,7 +279,7 @@ const ProxySettings = ({ proxyConfig, onUpdate }) => {
</label>
<input
id="auth.password"
type="text"
type="password"
name="auth.password"
className="block textbox"
autoComplete="off"

View File

@ -242,7 +242,7 @@ const ProxySettings = ({ close }) => {
</label>
<input
id="auth.password"
type="text"
type="password"
name="auth.password"
className="block textbox"
autoComplete="off"