1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-26 23:09:46 +02:00

optionally set loaded

This commit is contained in:
Kyle Spearrin 2018-04-12 15:42:34 -04:00
parent c2bdabc098
commit 2782ae33fc

View File

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