Sorry to interject, but this is how I am implementing the “tripwire effect”
this.detailService.filterSolutions().pipe(takeUntil(this.destroy$))
.subscribe(data => {
if (data) { this.solutions = data; }
});
Not sure if it’s applicable to the go-between with you and @rapropos