Skip to content

Commit 63e4a98

Browse files
authored
Merge pull request #232 from maxkorz/fix-rxjs
Don't import entire rxjs/Rx
2 parents 395da56 + 6b1ae78 commit 63e4a98

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/dropdown/dropdown.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ import {
2222
SimpleChanges,
2323
} from '@angular/core';
2424
import { AbstractControl, ControlValueAccessor, FormBuilder, NG_VALUE_ACCESSOR, Validator, FormControl } from '@angular/forms';
25-
import { Subject } from 'rxjs/Rx';
25+
import { Subject } from 'rxjs/Subject';
26+
import 'rxjs/add/operator/takeUntil';
2627

2728
const MULTISELECT_VALUE_ACCESSOR: any = {
2829
provide: NG_VALUE_ACCESSOR,

0 commit comments

Comments
 (0)