jquense / react-big-calendar

gcal/outlook like calendar component
http://jquense.github.io/react-big-calendar/examples/index.html
MIT License
7.93k stars 2.24k forks source link

fix: remove onSelectSlot event handler as its only creating empty ev… #2590

Open geraldhoxha95 opened 7 months ago

geraldhoxha95 commented 7 months ago

The issue was that clicking on a date on the calendar was creating empty events that would fill up the calendar. This was happening because the onSelectSlot prop was linked to the newEvent function, which was creating empty events.

Removed onSelectSlot. Functionality now more in align with the other storybook section, Basic Drag n Drop, where clicking on the dates does not do anything.

Closes #2587