I have the following template:
<ng-container *ngIf="{
    res1: obs1$ | async,
    res2: obs2$ | async
  } as observables; else loader">
the loader template will never be displayed since in the worst case I have an empty object which isn't falsy.
I could have 2 ng-container sequentially but that would mean that the async would be triggered sequentially. Is there any other way to solve this issue?
 
     
     
    