We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7014bb commit df156a5Copy full SHA for df156a5
client/packages/lowcoder-comps/src/comps/calendarComp/calendarComp.tsx
@@ -103,6 +103,7 @@ let CalendarBasicComp = (function () {
103
style,
104
firstDay,
105
editable,
106
+ licenceKey,
107
} = props;
108
109
function renderEventContent(eventInfo: EventContentArg) {
@@ -309,6 +310,8 @@ let CalendarBasicComp = (function () {
309
310
initialDate = undefined;
311
}
312
313
+
314
315
return (
316
<Wrapper
317
ref={ref}
@@ -359,7 +362,7 @@ let CalendarBasicComp = (function () {
359
362
setLeft(left);
360
363
}}
361
364
buttonText={buttonText}
- schedulerLicenseKey={props.licenceKey.value}
365
+ schedulerLicenseKey={licenceKey}
366
views={views}
367
eventClassNames={() => (!showEventTime ? "no-time" : "")}
368
slotLabelFormat={slotLabelFormat}
0 commit comments