fullcalendar / fullcalendar-react

The official React Component for FullCalendar

Home Page:https://fullcalendar.io/docs/react

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

timeGridWeek Border of columns and today highlight don't working

MircoSans opened this issue · comments

timeGridWeek Border of columns and today highlight don't working

 const fullCalendarRef = useRef<FullCalendar>(null);
 <FullCalendar
                    ref={fullCalendarRef}
                    plugins={[dayGridPlugin, timeGridPlugin, interactionPlugin]}
                    initialView="timeGridWeek"
                    headerToolbar={false}
                    eventClick={() => {}}
                    datesSet={(date) => console.log(date)}
                    selectMirror={true}
                    slotLabelFormat={{
                        hour12: false, // 14:00  true = 2pm
                        hour: '2-digit', //'06:xx'
                        minute: '2-digit', // 'xx:10'
                    }}
                    eventTimeFormat={{
                        hour: '2-digit',
                        minute: '2-digit',
                        hour12: false,
                    }}
                    allDaySlot={false}
                    events="https://fullcalendar.io/api/demo-feeds/events.json"
                    slotDuration="00:30:00"
                />

image

But change dayGridMonth, it alright
image

associated
#35

Would you be able to post a runnable, stripped-down demonstration of the bug? Would really appreciate it because the time saved reproducing will be time spent fixing.