Skip to content

Commit

Permalink
fix(core): import distinctUntilChanged from rxjs/operators (#1390)
Browse files Browse the repository at this point in the history
  • Loading branch information
CaerusKaru authored Jan 29, 2022
1 parent 6ce8f62 commit e8e172b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions projects/libs/flex-layout/core/media-observer/media-observer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@
* found in the LICENSE file at https://angular.io/license
*/
import {Injectable, OnDestroy} from '@angular/core';
import {Subject, asapScheduler, Observable, of, distinctUntilChanged} from 'rxjs';
import {debounceTime, filter, map, switchMap, takeUntil} from 'rxjs/operators';
import {Subject, asapScheduler, Observable, of} from 'rxjs';
import {
debounceTime,
distinctUntilChanged,
filter,
map,
switchMap,
takeUntil,
} from 'rxjs/operators';

import {mergeAlias} from '../add-alias';
import {MediaChange} from '../media-change';
Expand Down

0 comments on commit e8e172b

Please sign in to comment.