I would like to achieve the same thing than below in a smartest way :
charteringsPassFromZeroToOneEmpty$
.pipe(
withLatestFrom(transportFeatures$),
map(
([nothing, transportFeatures]: [
void,
Partial<TransportFeatures>
]) => transportFeatures
)
)
Each obervable is made with "valueChange()", in Angular reactive forms. I have tried sample(), throttle() and switchMap(), nothing is working. Does anyone has an idea ?
How about
combineLatestThis is the best I can come up with the details provided.