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

Update apps/desktop/src/autofill/services/desktop-fido2-user-interface.service.ts

Co-authored-by: Andreas Coroiu <acoroiu@bitwarden.com>
This commit is contained in:
Anders Åberg
2025-02-28 11:06:41 +01:00
committed by GitHub
parent 90a4b9a49c
commit 64cec6cacb

View File

@@ -100,12 +100,10 @@ export class DesktopFido2UserInterfaceSession implements Fido2UserInterfaceSessi
/**
* Observable that emits available cipher IDs once they're confirmed by the UI
*/
get availableCipherIds$(): Observable<string[]> {
return this.availableCipherIdsSubject.pipe(
filter((ids) => ids != null),
take(1),
);
}
availableCipherIds$ = this.availableCipherIdsSubject.pipe(
filter((ids) => ids != null),
take(1),
);
private chosenCipherSubject = new Subject<string>();