I'm trying to use this plugin with my vaadin 23 project.i have wr

i'm trying to use this plugin with my vaadin 23 project.

i have written the code that i'm posting, and the addEntryClicked listener is never fired. How can i open my dialog to insert some entries??

// Create a new calendar instance and attach it to our layout
FullCalendar calendar = FullCalendarBuilder.create().build();
calendar.setSizeFull();
calendar.setHeight(900);
calendar.setHeightByParent();
containerCalendar.add(calendar);
containerCalendar.setFlexGrow(1, calendar);
containerCalendar.setAlignItems(FlexComponent.Alignment.STRETCH);

calendar.setNowIndicatorShown(true);
calendar.setNumberClickable(true);
calendar.setTimeslotsSelectable(true);

calendar.setSlotMinTime(LocalTime.of(8, 0));
calendar.setSlotMaxTime(LocalTime.of(17, 0));

calendar.addEntryClickedListener(event -> {
Dialog dialog = new Dialog();
CalendarEntryView calendarEntryView = new CalendarEntryView(event.getEntry());
dialog.add(calendarEntryView);
dialog.setCloseOnEsc(true);
dialog.setCloseOnOutsideClick(true);
dialog.addThemeVariants(DialogVariant.LUMO_NO_PADDING);
dialog.setWidth(“500px”);
dialog.open();
});

calendar.setBusinessHours(
new BusinessHours(LocalTime.of(8, 0), LocalTime.of(17, 0), BusinessHours.DEFAULT_BUSINESS_WEEK)
);

That should theoretically work. Can you please create an issue for that on github with additional details regarding your project? (Vaadin version, Java version, is it Spring Boot project, application.properties, etc)