Open mikerentmeister opened 2 years ago
We have this operator:
Would you be interested in creating docs for it?
related to #1175
Hey, I just wanted what the correct way to this now would be. Is it still the accumulateObservables operator? I was wondering, because it is in the internales/core package. If this cart template which needs promotions, prices and allocations:
<ng-container
*ngIf="{
promotions: promotions$ | async,
prices: prices$ | async,
allocations: allocations$ | async
} as data"
>
Can I still do that in the template with rxLet or should I combine that in the class with accumulateObservables?
Thanks!
Description
This is more of a question than a bug report. Using the ngIf hack you can do this sort of in your component templates to be able to use 2+ observables in multiple places within your template.
Questions: