diff --git a/src/app/components/calendar/calendar.ts b/src/app/components/calendar/calendar.ts index ce28618cce4..a30f57f38d3 100755 --- a/src/app/components/calendar/calendar.ts +++ b/src/app/components/calendar/calendar.ts @@ -1835,7 +1835,7 @@ export class Calendar implements OnInit, OnDestroy, ControlValueAccessor { if (this.minDate) { if (this.minDate.getFullYear() > year) { validMin = false; - } else if (this.minDate.getFullYear() === year) { + } else if (this.minDate.getFullYear() === year && this.currentView != 'year') { if (this.minDate.getMonth() > month) { validMin = false; } else if (this.minDate.getMonth() === month) {