bug
Monthly view not working in IE11 showing blank calendar

My Code:
onView={onView}
onNavigate={onNavigate}
events={calEvents}
startAccessor={'start'}
endAccessor={'end'}
defaultView={DEFAULT_VIEW}
/>
it should show monthly events with days. I'm using latest 0.22.1
Set a min-height solved to me:
.rbc-calendar {
min-height: 500px;
}
Still i don't see any changes after setting min-height like above..:(
I figured out the issue. Issue with styles, flex is not setting correctly in IE. i have applied below styles and it's working fine.
.rbc-calendar .rbc-month-view .rbc-month-row,
.rbc-calendar .rbc-month-view .rbc-month-row .rbc-row-content,
.rbc-calendar .rbc-month-view .rbc-month-row .rbc-row-content .rbc-date-cell
{
flex: 1;
}
I figured out the issue. Issue with styles, flex is not setting correctly in IE. i have applied below styles and it's working fine.
.rbc-calendar .rbc-month-view .rbc-month-row,
.rbc-calendar .rbc-month-view .rbc-month-row .rbc-row-content,
.rbc-calendar .rbc-month-view .rbc-month-row .rbc-row-content .rbc-date-cell
{
flex: 1;
}
This code safe my day Thank !
Most helpful comment
I figured out the issue. Issue with styles, flex is not setting correctly in IE. i have applied below styles and it's working fine.
.rbc-calendar .rbc-month-view .rbc-month-row,
.rbc-calendar .rbc-month-view .rbc-month-row .rbc-row-content,
.rbc-calendar .rbc-month-view .rbc-month-row .rbc-row-content .rbc-date-cell
{
flex: 1;
}