Chore: Fix import of Observable to be from rxjs and not rxjs/internal. It was maybe causing optimization bailouts

This commit is contained in:
2021-09-20 09:27:33 +05:30
parent 5ff954deb6
commit debe0df7b7
77 changed files with 76 additions and 77 deletions

View File

@ -3,7 +3,7 @@ import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
import { ActivatedRoute } from '@angular/router';
import { BehaviorSubject } from 'rxjs';
import { Observable } from 'rxjs/internal/Observable';
import { Observable } from 'rxjs';
import { debounceTime, distinctUntilChanged, startWith } from 'rxjs/operators';
import { MenuCategory } from '../../core/menu-category';