1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

bug fixes in api models

This commit is contained in:
Kyle Spearrin
2018-07-10 10:06:47 -04:00
parent 36ab2ec78b
commit bded5eb625
2 changed files with 5 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ export class CollectionGroupDetailsResponse extends CollectionResponse {
constructor(response: any) {
super(response);
if (response.Groups != null) {
this.groups = response.Collections.map((g: any) => new SelectionReadOnlyResponse(g));
this.groups = response.Groups.map((g: any) => new SelectionReadOnlyResponse(g));
}
}
}