mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
add padlock importer, move from maps to arrays
This commit is contained in:
@@ -62,8 +62,8 @@ export class ImportComponent extends BaseImportComponent {
|
||||
}
|
||||
}
|
||||
if (importResult.collectionRelationships != null) {
|
||||
importResult.collectionRelationships.forEach((v: number, k: number) =>
|
||||
request.collectionRelationships.push(new KvpRequest(k, v)));
|
||||
importResult.collectionRelationships.forEach((r) =>
|
||||
request.collectionRelationships.push(new KvpRequest(r[0], r[1])));
|
||||
}
|
||||
return await this.apiService.postImportOrganizationCiphers(this.organizationId, request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user