Skip to content

Commit 96e7729

Browse files
committed
nit(combobox): moved coerceArray import into existing import from same file path.
1 parent cf648d7 commit 96e7729

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/cdk-experimental/combobox/combobox.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8-
import {coerceArray} from "@angular/cdk/coercion/array";
98

109
export type OpenAction = 'focus' | 'click' | 'downKey' | 'toggle';
1110
export type OpenActionInput = OpenAction | OpenAction[] | string | null | undefined;
@@ -30,8 +29,7 @@ import {
3029
OverlayRef
3130
} from '@angular/cdk/overlay';
3231
import {Directionality} from '@angular/cdk/bidi';
33-
import {BooleanInput, coerceBooleanProperty} from '@angular/cdk/coercion';
34-
32+
import {BooleanInput, coerceBooleanProperty, coerceArray} from '@angular/cdk/coercion';
3533

3634
@Directive({
3735
selector: '[cdkCombobox]',

0 commit comments

Comments
 (0)