-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Hide credentials that are in the bin #15034
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hide credentials that are in the bin #15034
Conversation
|
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
Additional details and impacted files@@ Coverage Diff @@
## feature/passkey-provider #15034 +/- ##
===========================================================
Coverage ? 36.24%
===========================================================
Files ? 3200
Lines ? 92864
Branches ? 16695
===========================================================
Hits ? 33660
Misses ? 56781
Partials ? 2423 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Great job, no security vulnerabilities found in this Pull Request |
@@ -94,7 +94,8 @@ export class Fido2CreateComponent implements OnInit, OnDestroy { | |||
|
|||
return ( | |||
cipher.login.matchesUri(rpid, equivalentDomains) && | |||
Fido2Utils.cipherHasNoOtherPasskeys(cipher, userHandle) | |||
Fido2Utils.cipherHasNoOtherPasskeys(cipher, userHandle) && | |||
!cipher.deletedDate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does deletedDate
get nulled out if the item is restored from the delete bin?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it is set to null
when restored.
PM-20347
📔 Objective
Hide credentials that are in the bin. This change addresses the create credential and vault modals.
⏰ Reminders before review
🦮 Reviewer guidelines
:+1:
) or similar for great changes:memo:
) or ℹ️ (:information_source:
) for notes or general info:question:
) for questions:thinking:
) or 💭 (:thought_balloon:
) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion:art:
) for suggestions / improvements:x:
) or:warning:
) for more significant problems or concerns needing attention:seedling:
) or ♻️ (:recycle:
) for future improvements or indications of technical debt:pick:
) for minor or nitpick changes