1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

show login credentials if only passkey is present (#12870)

This commit is contained in:
Jordan Aasen
2025-01-16 11:10:23 -08:00
committed by GitHub
parent f82b8ca844
commit 70cf4593fb

View File

@@ -101,8 +101,8 @@ export class CipherViewComponent implements OnChanges, OnDestroy {
return false;
}
const { username, password, totp } = this.cipher.login;
return username || password || totp;
const { username, password, totp, fido2Credentials } = this.cipher.login;
return username || password || totp || fido2Credentials;
}
get hasAutofill() {