diff --git a/jslib b/jslib index 0951424de7..42348e2fdc 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 0951424de77fbb61a38616d13d6c67f74ee19775 +Subproject commit 42348e2fdc6206157d68d8a9f496eaa70520ab01 diff --git a/src/app/organizations/tools/import.component.ts b/src/app/organizations/tools/import.component.ts index f5f11d5f13..db2021909d 100644 --- a/src/app/organizations/tools/import.component.ts +++ b/src/app/organizations/tools/import.component.ts @@ -24,9 +24,9 @@ export class ImportComponent extends BaseImportComponent { constructor(i18nService: I18nService, analytics: Angulartics2, toasterService: ToasterService, importService: ImportService, router: Router, private route: ActivatedRoute, - private platformUtilsService: PlatformUtilsService, + platformUtilsService: PlatformUtilsService, private userService: UserService) { - super(i18nService, analytics, toasterService, importService, router); + super(i18nService, analytics, toasterService, importService, router, platformUtilsService); } async ngOnInit() { diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index 3b02ccda30..e5c48fe956 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -128,7 +128,8 @@ const authService = new AuthService(cryptoService, apiService, userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService, vaultTimeoutService, consoleLogService); const exportService = new ExportService(folderService, cipherService, apiService); -const importService = new ImportService(cipherService, folderService, apiService, i18nService, collectionService); +const importService = new ImportService(cipherService, folderService, apiService, i18nService, collectionService, + platformUtilsService); const notificationsService = new NotificationsService(userService, syncService, appIdService, apiService, vaultTimeoutService, async () => messagingService.send('logout', { expired: true }), consoleLogService); const environmentService = new EnvironmentService(apiService, storageService, notificationsService); diff --git a/src/app/tools/import.component.html b/src/app/tools/import.component.html index 805ee7824e..578695f36a 100644 --- a/src/app/tools/import.component.html +++ b/src/app/tools/import.component.html @@ -1,7 +1,7 @@