File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
client/packages/lowcoder-comps/src/comps/calendarComp Expand file tree Collapse file tree 2 files changed +3
-1
lines changed 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