import { finalize } from 'rxjs/operators'; this.loading = true; this.products$ = this.getProducts().pipe( finalize(() => { this.loading = false; } ));