1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +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

@@ -6,7 +6,10 @@ export class CollectionRequest {
name: string;
groups: SelectionReadOnlyRequest[] = [];
constructor(collection: Collection) {
constructor(collection?: Collection) {
if (collection == null) {
return;
}
this.name = collection.name ? collection.name.encryptedString : null;
}
}