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:
@@ -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>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user