Skip to content

Commit 782e6b4

Browse files
committed
minor changes
1 parent c35db12 commit 782e6b4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

client/packages/lowcoder-comps/src/comps/calendarComp/calendarComp.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,9 @@ let CalendarBasicComp = (function () {
254254
animation:item?.animation,
255255
animationDelay:item?.animationDelay,
256256
animationDuration:item?.animationDuration,
257-
animationIterationCount:item?.animationIterationCount
257+
animationIterationCount:item?.animationIterationCount,
258+
userTimeZone:item?.userTimeZone,
259+
timeRange:item?.timeRange,
258260
}}
259261
}) : [currentEvents];
260262

client/packages/lowcoder-comps/src/comps/calendarComp/calendarConstants.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -823,6 +823,9 @@ export type EventType = {
823823
detail?:string;
824824
titleColor?:string;
825825
detailColor?:string;
826+
userTimeZone?:string;
827+
timeRange?:string;
828+
826829
};
827830

828831
export enum ViewType {

0 commit comments

Comments
 (0)