Calendar: Fix all day non-blocking events hover display issue

When there are too many all day events, we hide some and only show them all on hover.  The day indicator was overlaid over the revealed events
This commit is contained in:
nathan 2023-06-21 14:03:03 -06:00
parent 59f94300db
commit a4e6a3bbd8

View File

@ -2218,7 +2218,7 @@ export class et2_calendar_timegrid extends et2_calendar_view implements et2_IDet
height: $node.height() > parseInt($node.css('line-height')) ?
$node.css('padding-bottom') : '100%'
});
day = node;
day = node.querySelector(".calendar_calDayColHeader_spacer") ?? node;
this.gridHover
.attr('data-non_blocking', 'true');
break;