File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
client/packages/lowcoder-comps/src/comps/calendarComp Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -6,15 +6,19 @@ updates:
66 directory : " /server/api-service"
77 schedule :
88 interval : " monthly"
9+ target-branch : " dev"
910 - package-ecosystem : " npm"
1011 directory : " /server/node-service"
1112 schedule :
1213 interval : " monthly"
14+ target-branch : " dev"
1315 - package-ecosystem : " npm"
1416 directory : " /client"
1517 schedule :
1618 interval : " monthly"
19+ target-branch : " dev"
1720 - package-ecosystem : " docker"
1821 directory : " /deploy/docker"
1922 schedule :
2023 interval : " monthly"
24+ target-branch : " dev"
Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ let CalendarBasicComp = (function () {
125125 isList = { isList }
126126 bg = { eventInfo . backgroundColor }
127127 theme = { theme ?. theme }
128+ allDay = { showAllDay }
128129 $style = { props . style }
129130 >
130131 < div className = "event-time" > { eventInfo . timeText } </ div >
Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ export const Wrapper = styled.div<{
388388
389389 .fc-scrollgrid-liquid > tbody {
390390 & > tr:nth-of-type(2) {
391- display: none ;
391+ display: ${ ( props ) => props . allDay && 1 } ;
392392 }
393393 }
394394 .fc .fc-timegrid-slot-label-cushion {
@@ -639,6 +639,7 @@ export const Event = styled.div<{
639639 bg : string ;
640640 theme : Object ;
641641 isList : boolean ;
642+ allDay : boolean ;
642643 $style : CalendarStyleType ;
643644} > `
644645 height: 100%;
You can’t perform that action at this time.
0 commit comments