Skip to content

Commit

Permalink
fix(calendar): wrong typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fetrarij committed Sep 12, 2018
1 parent 0f4758d commit 4eb70fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daterangepicker/daterangepicker.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<ng-container *ngIf="showDropdowns && calendarVariables.left.dropdowns">
<select class="monthselect" (change)="monthChanged($event, 'left')">
<option
[disabled]="(calendarVariables.left.dropdowns.inMinYear && m < calendarVariables.left.minDate.minDate.month()) || (calendarVariables.left.dropdowns.inMaxYear && m > calendarVariables.left.maxDate.month())"
[disabled]="(calendarVariables.left.dropdowns.inMinYear && m < calendarVariables.left.minDate.month()) || (calendarVariables.left.dropdowns.inMaxYear && m > calendarVariables.left.maxDate.month())"
*ngFor="let m of calendarVariables.left.dropdowns.monthArrays" [value]="m" [selected]="calendarVariables.left.dropdowns.currentMonth == m">
{{locale.monthNames[m]}}
</option>
Expand Down

0 comments on commit 4eb70fc

Please # to comment.