mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
optionally set loaded
This commit is contained in:
@@ -35,10 +35,13 @@ 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();
|
||||||
this.loaded = true;
|
|
||||||
|
if (setLoaded) {
|
||||||
|
this.loaded = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async loadCollections() {
|
async loadCollections() {
|
||||||
|
|||||||
Reference in New Issue
Block a user