In my page there is a button that generates a report. That report needs data that is loaded using a http call to a rest endpoint when the page is loaded, but I do not have a
If you're doing this to debug, the simplest solution is to use the complete argument of tap:
complete
tap
tap(next: null, error: null, complete: () => void)
With a source source$ it would look like this:
source$
source$.pipe( tap(undefined, undefined, console.log) );