mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-23 21:31:29 +01:00
change backslash to fowardslash for lastpass import
This commit is contained in:
parent
cb7336c0e8
commit
80c0da766e
@ -68,6 +68,9 @@ export class LastPassCsvImporter extends BaseImporter implements Importer {
|
||||
if (addFolder) {
|
||||
const f = new FolderView();
|
||||
f.name = value.grouping;
|
||||
if (f.name != null) {
|
||||
f.name = f.name.replace(/\\/g, '/');
|
||||
}
|
||||
result.folders.push(f);
|
||||
}
|
||||
if (hasFolder) {
|
||||
|
Loading…
Reference in New Issue
Block a user