tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 67d77bed33441aa1ce5205eb187fd38e3be16b9e
parent 7dfb60b3969a6cf2722b67b941adefde60b80595
Author: mailelucks <maile.lucks@gmail.com>
Date:   Fri, 31 Oct 2025 18:20:06 +0000

Bug 1994636 - Update login-password-field conceal logic to skip empty passwords for better UX - r=mtigley,credential-management-reviewers

Differential Revision: https://phabricator.services.mozilla.com/D270862

Diffstat:
Mbrowser/components/aboutlogins/content/components/input-field/login-password-field.mjs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/browser/components/aboutlogins/content/components/input-field/login-password-field.mjs b/browser/components/aboutlogins/content/components/input-field/login-password-field.mjs @@ -41,7 +41,7 @@ class LoginPasswordField extends MozLitElement { } get #password() { - return !this.newPassword && this.concealed + return !this.newPassword && this.concealed && this.value ? LoginPasswordField.CONCEALED_PASSWORD_TEXT : this.value; }