mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-25 01:14:23 +01:00
fix: use html password type for password and credential inputs (#1824)
This commit is contained in:
parent
12263a71b6
commit
ac610f9ea3
@ -107,7 +107,7 @@ const ClientCertSettings = ({ clientCertConfig, onUpdate, onRemove }) => {
|
|||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
id="passphrase"
|
id="passphrase"
|
||||||
type="text"
|
type="password"
|
||||||
name="passphrase"
|
name="passphrase"
|
||||||
className="block textbox"
|
className="block textbox"
|
||||||
onChange={formik.handleChange}
|
onChange={formik.handleChange}
|
||||||
|
@ -279,7 +279,7 @@ const ProxySettings = ({ proxyConfig, onUpdate }) => {
|
|||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
id="auth.password"
|
id="auth.password"
|
||||||
type="text"
|
type="password"
|
||||||
name="auth.password"
|
name="auth.password"
|
||||||
className="block textbox"
|
className="block textbox"
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
|
@ -242,7 +242,7 @@ const ProxySettings = ({ close }) => {
|
|||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
id="auth.password"
|
id="auth.password"
|
||||||
type="text"
|
type="password"
|
||||||
name="auth.password"
|
name="auth.password"
|
||||||
className="block textbox"
|
className="block textbox"
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
|
Loading…
Reference in New Issue
Block a user