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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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