DT
Size: a a a
DT
L
DT
L
combineLatest( select ... ).pipe(takeUntil(this.destroyed$)).subscribe(() => )
DT
DP
ГР
DT
combineLatest(
this.store.select(selectRanges),
this.store.select(selectOccupations),
this.store.select(selectCountries),
this.store.select(selectBanks),
).subscribe(([ranges, occupations, countries, banks]) => {
console.log(1)
console.log(ranges, occupations, countries, banks);
});
AH
DT
AS
combineLatest(
this.store.select(selectRanges),
this.store.select(selectOccupations),
this.store.select(selectCountries),
this.store.select(selectBanks),
).subscribe(([ranges, occupations, countries, banks]) => {
console.log(1)
console.log(ranges, occupations, countries, banks);
});
LT
ГР
J
AB
J
J
J
O