diff --git a/jslib b/jslib
index 647b254a71..76c53bc641 160000
--- a/jslib
+++ b/jslib
@@ -1 +1 @@
-Subproject commit 647b254a71d0af105e1f6f1a1febeb15cd4181fb
+Subproject commit 76c53bc641bc2385b601921f52be105bb539ffe6
diff --git a/src/app/accounts/lock.component.ts b/src/app/accounts/lock.component.ts
index 9ecf6de3ef..6f34895e60 100644
--- a/src/app/accounts/lock.component.ts
+++ b/src/app/accounts/lock.component.ts
@@ -3,8 +3,10 @@ import { Router } from '@angular/router';
import { CryptoService } from 'jslib/abstractions/crypto.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
+import { LockService } from 'jslib/abstractions/lock.service';
import { MessagingService } from 'jslib/abstractions/messaging.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
+import { StorageService } from 'jslib/abstractions/storage.service';
import { UserService } from 'jslib/abstractions/user.service';
import { RouterService } from '../services/router.service';
@@ -19,8 +21,10 @@ export class LockComponent extends BaseLockComponent {
constructor(router: Router, i18nService: I18nService,
platformUtilsService: PlatformUtilsService, messagingService: MessagingService,
userService: UserService, cryptoService: CryptoService,
+ storageService: StorageService, lockService: LockService,
private routerService: RouterService) {
- super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService);
+ super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService,
+ storageService, lockService);
}
async ngOnInit() {
diff --git a/src/app/tools/import.component.html b/src/app/tools/import.component.html
index c1bf57643d..528a7092ff 100644
--- a/src/app/tools/import.component.html
+++ b/src/app/tools/import.component.html
@@ -178,6 +178,10 @@
Open the Kaspersky Password Manager desktop application and navigate to "Settings" → "Import/Export". Locate
the "Export to text file" section and select the "Export" button to save the TXT file.
+