diff --git a/components/lib/calendar/Calendar.js b/components/lib/calendar/Calendar.js index ca05344a4b..4e2e0497e5 100644 --- a/components/lib/calendar/Calendar.js +++ b/components/lib/calendar/Calendar.js @@ -1812,7 +1812,7 @@ export const Calendar = React.memo( validDate = !isDateDisabled(day, month, year); } - if (props.disabledDays) { + if (props.disabledDays && currentView !== 'month') { validDay = !isDayDisabled(day, month, year); }