optionally set loaded

This commit is contained in:
Kyle Spearrin 2018-04-12 15:42:34 -04:00
parent c2bdabc098
commit 2782ae33fc
1 changed files with 5 additions and 2 deletions

View File

@ -35,11 +35,14 @@ export class GroupingsComponent {
constructor(protected collectionService: CollectionService, protected folderService: FolderService) { } constructor(protected collectionService: CollectionService, protected folderService: FolderService) { }
async load() { async load(setLoaded = true) {
await this.loadFolders(); await this.loadFolders();
await this.loadCollections(); await this.loadCollections();
if (setLoaded) {
this.loaded = true; this.loaded = true;
} }
}
async loadCollections() { async loadCollections() {
this.collections = await this.collectionService.getAllDecrypted(); this.collections = await this.collectionService.getAllDecrypted();