Skip to content

Calendar Component - Bugfixes and Premium views #736

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Mar 4, 2024
Prev Previous commit
Next Next commit
fixed access of licence in the full calendar
  • Loading branch information
freddysundowner committed Feb 23, 2024
commit df156a58fa17f1275f3c38b443100c4f6505de60
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ let CalendarBasicComp = (function () {
style,
firstDay,
editable,
licenceKey,
} = props;

function renderEventContent(eventInfo: EventContentArg) {
Expand Down Expand Up @@ -309,6 +310,8 @@ let CalendarBasicComp = (function () {
initialDate = undefined;
}



return (
<Wrapper
ref={ref}
Expand Down Expand Up @@ -359,7 +362,7 @@ let CalendarBasicComp = (function () {
setLeft(left);
}}
buttonText={buttonText}
schedulerLicenseKey={props.licenceKey.value}
schedulerLicenseKey={licenceKey}
views={views}
eventClassNames={() => (!showEventTime ? "no-time" : "")}
slotLabelFormat={slotLabelFormat}
Expand Down