1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

add new deps for two factor component

This commit is contained in:
Kyle Spearrin
2018-04-04 16:28:45 -04:00
parent 5a16e42cf0
commit 24f86e9a73
2 changed files with 4 additions and 3 deletions

2
jslib

Submodule jslib updated: f673bd62d7...013bf20a35

View File

@@ -20,6 +20,7 @@ import { TwoFactorProviderType } from 'jslib/enums/twoFactorProviderType';
import { ApiService } from 'jslib/abstractions/api.service';
import { AuthService } from 'jslib/abstractions/auth.service';
import { EnvironmentService } from 'jslib/services/environment.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { SyncService } from 'jslib/abstractions/sync.service';
@@ -37,9 +38,9 @@ export class TwoFactorComponent extends BaseTwoFactorComponent {
analytics: Angulartics2, toasterService: ToasterService,
i18nService: I18nService, apiService: ApiService,
platformUtilsService: PlatformUtilsService, syncService: SyncService,
private componentFactoryResolver: ComponentFactoryResolver) {
environmentService: EnvironmentService, private componentFactoryResolver: ComponentFactoryResolver) {
super(authService, router, analytics, toasterService, i18nService, apiService,
platformUtilsService, syncService);
platformUtilsService, syncService, window, environmentService);
}
anotherMethod() {