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 () {
125
125
isList = { isList }
126
126
bg = { eventInfo . backgroundColor }
127
127
theme = { theme ?. theme }
128
+ allDay = { showAllDay }
128
129
$style = { props . style }
129
130
>
130
131
< 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<{
388
388
389
389
.fc-scrollgrid-liquid > tbody {
390
390
& > tr:nth-of-type(2) {
391
- display: none ;
391
+ display: ${ ( props ) => props . allDay && 1 } ;
392
392
}
393
393
}
394
394
.fc .fc-timegrid-slot-label-cushion {
@@ -639,6 +639,7 @@ export const Event = styled.div<{
639
639
bg : string ;
640
640
theme : Object ;
641
641
isList : boolean ;
642
+ allDay : boolean ;
642
643
$style : CalendarStyleType ;
643
644
} > `
644
645
height: 100%;
You can’t perform that action at this time.
0 commit comments