Skip to content

Commit

Permalink
fix(datepicker): fixes arrows change detection on manual change (#46)
Browse files Browse the repository at this point in the history
Closes #40
  • Loading branch information
kyubisation authored Jun 21, 2019
1 parent ed990a2 commit b9c1efe
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ export class DatepickerComponent<D> implements OnDestroy {
}
set selected(value: D | null) {
this._validSelected = value;
this._changeDetectorRef.markForCheck();
}
private _validSelected: D | null = null;

Expand Down

0 comments on commit b9c1efe

Please sign in to comment.