mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-09 09:51:02 +01:00
filter collections for current org
This commit is contained in:
parent
171589fb3d
commit
340e377b37
@ -68,7 +68,7 @@ export class CollectionsComponent implements OnInit {
|
|||||||
} else {
|
} else {
|
||||||
response = await this.apiService.getUserCollections();
|
response = await this.apiService.getUserCollections();
|
||||||
}
|
}
|
||||||
const collections = response.data.map((r) =>
|
const collections = response.data.filter((c) => c.organizationId === this.organizationId).map((r) =>
|
||||||
new Collection(new CollectionData(r as CollectionDetailsResponse)));
|
new Collection(new CollectionData(r as CollectionDetailsResponse)));
|
||||||
this.collections = await this.collectionService.decryptMany(collections);
|
this.collections = await this.collectionService.decryptMany(collections);
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user