mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
Update jslib (#1319)
* Update jslib * Update constructors * Update jslib
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: d02fcd082e...78429aa720
@@ -1,4 +1,7 @@
|
|||||||
import { Component } from '@angular/core';
|
import {
|
||||||
|
Component,
|
||||||
|
NgZone
|
||||||
|
} from '@angular/core';
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
|
|
||||||
import { ApiService } from 'jslib-common/abstractions/api.service';
|
import { ApiService } from 'jslib-common/abstractions/api.service';
|
||||||
@@ -29,10 +32,10 @@ export class LockComponent extends BaseLockComponent {
|
|||||||
storageService: StorageService, vaultTimeoutService: VaultTimeoutService,
|
storageService: StorageService, vaultTimeoutService: VaultTimeoutService,
|
||||||
environmentService: EnvironmentService, private routerService: RouterService,
|
environmentService: EnvironmentService, private routerService: RouterService,
|
||||||
stateService: StateService, apiService: ApiService, logService: LogService,
|
stateService: StateService, apiService: ApiService, logService: LogService,
|
||||||
keyConnectorService: KeyConnectorService) {
|
keyConnectorService: KeyConnectorService, ngZone: NgZone) {
|
||||||
super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService,
|
super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService,
|
||||||
storageService, vaultTimeoutService, environmentService, stateService, apiService, logService,
|
storageService, vaultTimeoutService, environmentService, stateService, apiService, logService,
|
||||||
keyConnectorService);
|
keyConnectorService, ngZone);
|
||||||
}
|
}
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
import { Component } from '@angular/core';
|
import {
|
||||||
|
Component,
|
||||||
|
NgZone,
|
||||||
|
} from '@angular/core';
|
||||||
import {
|
import {
|
||||||
ActivatedRoute,
|
ActivatedRoute,
|
||||||
Router,
|
Router,
|
||||||
@@ -35,12 +38,13 @@ export class LoginComponent extends BaseLoginComponent {
|
|||||||
storageService: StorageService, stateService: StateService,
|
storageService: StorageService, stateService: StateService,
|
||||||
platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService,
|
platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService,
|
||||||
passwordGenerationService: PasswordGenerationService, cryptoFunctionService: CryptoFunctionService,
|
passwordGenerationService: PasswordGenerationService, cryptoFunctionService: CryptoFunctionService,
|
||||||
private apiService: ApiService, private policyService: PolicyService, logService: LogService) {
|
private apiService: ApiService, private policyService: PolicyService, logService: LogService,
|
||||||
|
ngZone: NgZone) {
|
||||||
super(authService, router,
|
super(authService, router,
|
||||||
platformUtilsService, i18nService,
|
platformUtilsService, i18nService,
|
||||||
stateService, environmentService,
|
stateService, environmentService,
|
||||||
passwordGenerationService, cryptoFunctionService,
|
passwordGenerationService, cryptoFunctionService,
|
||||||
storageService, logService);
|
storageService, logService, ngZone);
|
||||||
this.onSuccessfulLoginNavigate = this.goAfterLogIn;
|
this.onSuccessfulLoginNavigate = this.goAfterLogIn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user