Skip to content

Commit a66f5fe

Browse files
authored
Merge pull request #412 from aelassas/patch-2
Fix: Click on More... opens wrong day view, it shoud open clicked day view
2 parents 73ecd47 + 0ca1eba commit a66f5fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/components/events/MonthEvents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const MonthEvents = ({
8888
style={{ top: topSpace, fontSize: 11 }}
8989
onClick={(e) => {
9090
e.stopPropagation();
91-
onViewMore(event.start);
91+
onViewMore(today);
9292
}}
9393
>
9494
{`${Math.abs(events.length - i)} ${translations.moreEvents}`}

0 commit comments

Comments
 (0)