1
0
mirror of https://github.com/bitwarden/web synced 2025-12-28 22:23:52 +00:00

aot compilation fixes

This commit is contained in:
Kyle Spearrin
2018-07-09 17:07:13 -04:00
parent 637120d0c5
commit a45c77bda9
4 changed files with 26 additions and 2 deletions

View File

@@ -39,4 +39,16 @@ export class CollectionsComponent implements OnInit {
this.collections = await this.collectionService.decryptMany(collections);
this.loading = false;
}
edit(collection: CollectionView) {
//
}
add() {
this.edit(null);
}
async delete(collection: CollectionView) {
//
}
}