Skip to content

Commit

Permalink
fix aot issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalerba committed Jun 29, 2017
1 parent 03f22e6 commit 3e932fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/demo-app/datepicker/datepicker-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export class DatepickerDemo {
maxDate: Date;
startAt: Date;
date: Date;
lastDateInput: Date;
lastDateChange: Date;
lastDateInput: Date | null;
lastDateChange: Date | null;

dateFilter = (date: Date) => date.getMonth() % 2 == 1 && date.getDate() % 2 == 0;

Expand Down

0 comments on commit 3e932fa

Please sign in to comment.