Skip to content

Commit a5052cd

Browse files
authored
Merge pull request #422 from cal-smith/master
fix(datepicker): remove story array import
2 parents d2fc2fd + 3294273 commit a5052cd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/datepicker/datepicker.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { array } from "@storybook/addon-knobs/angular";
21
import { Component, Input, Output, EventEmitter } from "@angular/core";
32
import { FlatpickrOptions } from "ng2-flatpickr";
43
import rangePlugin from "flatpickr/dist/plugins/rangePlugin";
@@ -75,7 +74,7 @@ export class DatePicker {
7574

7675
@Input() id = `datepicker-${DatePicker.datePickerCount++}`;
7776

78-
@Input() value: array;
77+
@Input() value: Array<any>;
7978

8079
@Output() valueChange: EventEmitter<any> = new EventEmitter();
8180

0 commit comments

Comments
 (0)