1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 06:54:07 +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
parent 85e3f0612b
commit 7996385d5f

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);