Skip to content

Commit

Permalink
fix(module:date-picker): calendar-input view child
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel committed Jul 15, 2019
1 parent 1c9466e commit e2c2e9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class CalendarInputComponent implements OnInit {
@Input() value: CandyDate;
@Input() nzAutoFocus: boolean;
@Output() readonly valueChange = new EventEmitter<CandyDate>();
@ViewChild('inputElement') inputRef: ElementRef;
@ViewChild('inputElement', { static: false }) inputRef: ElementRef;

prefixCls: string = 'ant-calendar';
invalidInputClass: string = '';
Expand Down

0 comments on commit e2c2e9d

Please sign in to comment.