1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-26 06:13:46 +00:00

re-add comment

This commit is contained in:
jaasen-livefront
2026-01-21 16:33:17 -08:00
parent 02560a86c2
commit a003fa1be0

View File

@@ -137,8 +137,17 @@ export class VaultV2Component implements OnInit, AfterViewInit, OnDestroy {
activeUserId: UserId | null = null;
/**
* Subject that indicates whether the vault is ready to render
* and that all initialization tasks have been completed (ngOnInit).
* @private
*/
private readySubject = new BehaviorSubject(false);
/**
* Indicates whether the vault is loading and not yet ready to be displayed.
* @protected
*/
protected loading$ = combineLatest([
this.vaultPopupLoadingService.loading$,
this.readySubject.asObservable(),