mirror of
https://github.com/bitwarden/browser
synced 2026-01-31 00:33:33 +00:00
pass null for empty folder ids
This commit is contained in:
@@ -279,7 +279,7 @@ export abstract class BaseImporter {
|
||||
const collection = new CollectionView({
|
||||
name: f.name,
|
||||
organizationId: this.organizationId,
|
||||
id: f.id as CollectionId,
|
||||
id: (f.id as CollectionId) ?? null,
|
||||
});
|
||||
return collection;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user