1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-09 13:10:17 +00:00

Show items for url that don't have passkey

This commit is contained in:
Jeffrey Holland
2025-04-04 15:07:53 +02:00
committed by Anders Åberg
parent 6426dc51e6
commit f3a392cf56

View File

@@ -86,8 +86,7 @@ export class Fido2CreateComponent implements OnInit, OnDestroy {
}
return (
cipher.login.matchesUri(rpid, equivalentDomains) &&
(!cipher.login.fido2Credentials || cipher.login.fido2Credentials.length === 0)
cipher.login.matchesUri(rpid, equivalentDomains) && !cipher.login.hasFido2Credentials
);
});
this.ciphersSubject.next(relevantCiphers);