Browse Source

fix: do not show true length of password in password mask

pull/17052/head
Mauritz Sjödin 2 months ago
parent
commit
0625268379
  1. 2
      libs/vault/src/cipher-view/login-credentials/login-credentials-view.component.html

2
libs/vault/src/cipher-view/login-credentials/login-credentials-view.component.html

@ -38,7 +38,7 @@ @@ -38,7 +38,7 @@
bitInput
#passwordInput
type="password"
[value]="cipher.login.password"
[value]="passwordRevealed ? cipher.login.password : '*'.repeat(8)"
aria-readonly="true"
data-testid="login-password"
/>

Loading…
Cancel
Save