mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
fixed pr comments
This commit is contained in:
@@ -195,8 +195,8 @@ export class BrowserFido2UserInterfaceSession implements Fido2UserInterfaceSessi
|
|||||||
);
|
);
|
||||||
|
|
||||||
this.tabClosed$ = fromEventPattern(
|
this.tabClosed$ = fromEventPattern(
|
||||||
(handler: any) => chrome.windows.onRemoved.addListener(handler),
|
(handler: any) => chrome.tabs.onRemoved.addListener(handler),
|
||||||
(handler: any) => chrome.windows.onRemoved.removeListener(handler)
|
(handler: any) => chrome.tabs.onRemoved.removeListener(handler)
|
||||||
);
|
);
|
||||||
|
|
||||||
BrowserFido2UserInterfaceSession.sendMessage({
|
BrowserFido2UserInterfaceSession.sendMessage({
|
||||||
@@ -303,7 +303,7 @@ export class BrowserFido2UserInterfaceSession implements Fido2UserInterfaceSessi
|
|||||||
this.destroy$.complete();
|
this.destroy$.complete();
|
||||||
}
|
}
|
||||||
|
|
||||||
async abort(fallback = false) {
|
private async abort(fallback = false) {
|
||||||
this.abortController.abort(fallback ? UserRequestedFallbackAbortReason : undefined);
|
this.abortController.abort(fallback ? UserRequestedFallbackAbortReason : undefined);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -144,11 +144,6 @@ export class LoginComponent extends BaseLoginComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// eslint-disable-next-line rxjs-angular/prefer-takeuntil
|
|
||||||
ngOnDestroy(): void {
|
|
||||||
super.ngOnDestroy();
|
|
||||||
}
|
|
||||||
|
|
||||||
async goAfterLogIn() {
|
async goAfterLogIn() {
|
||||||
const masterPassword = this.formGroup.value.masterPassword;
|
const masterPassword = this.formGroup.value.masterPassword;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user