mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
dashlane csv importer
This commit is contained in:
parent
763e43905a
commit
8e3d5b99c5
@ -88,6 +88,10 @@
|
||||
Using the Password Safe desktop application, navigate to "File" → "Export To" → "XML format..." and save the XML
|
||||
file.
|
||||
</ng-container>
|
||||
<ng-container *ngIf="format === 'dashlanecsv'">
|
||||
Using the Dashlane desktop application, navigate to "File" → "Export" → "Unsecured archive (readable) in CSV format"
|
||||
and save the CSV file.
|
||||
</ng-container>
|
||||
</app-callout>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
|
@ -25,6 +25,7 @@ import { AviraCsvImporter } from 'jslib/importers/aviraCsvImporter';
|
||||
import { BitwardenCsvImporter } from 'jslib/importers/bitwardenCsvImporter';
|
||||
import { BlurCsvImporter } from 'jslib/importers/blurCsvImporter';
|
||||
import { ChromeCsvImporter } from 'jslib/importers/chromeCsvImporter';
|
||||
import { DashlaneCsvImporter } from 'jslib/importers/dashlaneCsvImporter';
|
||||
import { EnpassCsvImporter } from 'jslib/importers/enpassCsvImporter';
|
||||
import { FirefoxCsvImporter } from 'jslib/importers/firefoxCsvImporter';
|
||||
import { Importer } from 'jslib/importers/importer';
|
||||
@ -260,6 +261,8 @@ export class ImportComponent implements OnInit {
|
||||
return new EnpassCsvImporter();
|
||||
case 'pwsafexml':
|
||||
return new PasswordSafeXmlImporter();
|
||||
case 'dashlanecsv':
|
||||
return new DashlaneCsvImporter();
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user