NetanelBasal
6/26/2018 - 5:05 AM

finalize.ts

import { finalize } from 'rxjs/operators';

this.loading = true;

this.products$ = this.getProducts().pipe(
  finalize(() => {
    this.loading = false;
  }
));