1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-03-22 15:19:15 +01:00

show login credentials if only passkey is present

This commit is contained in:
jaasen-livefront 2025-01-14 12:43:29 -08:00
parent f54a8da47c
commit dc2f2367c2
No known key found for this signature in database

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() {