skip to Main Content

Javascript – Need help making an event do something on click and other event do nothing on click

<FullCalendar allDaySlot={true} eventClick={(info) => this.openReservationInfoModal(info.event)} events={[...milestones.map(milestone => ({ id: milestone.id, title: milestone.description, start: milestone.expectedDate, allDay: true })), ...this.state.reservations]} what this code do is show in the calendar the milestones and the room reservations but my problem is that in the…

VIEW QUESTION
Back To Top
Search