mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
remembear csv importer
This commit is contained in:
parent
fb2288c4bc
commit
259725882a
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 647b254a71d0af105e1f6f1a1febeb15cd4181fb
|
||||
Subproject commit 76c53bc641bc2385b601921f52be105bb539ffe6
|
@ -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() {
|
||||
|
@ -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.
|
||||
</ng-container>
|
||||
<ng-container *ngIf="format === 'remembearcsv'">
|
||||
Open the RememBear desktop application and navigate to "Settings" → "Account" → "Export".
|
||||
Enter your master password and select the "Export Anyway" button to save the CSV file.
|
||||
</ng-container>
|
||||
</app-callout>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
|
Loading…
Reference in New Issue
Block a user