Skip to content

Commit

Permalink
Merge pull request #412 from aelassas/patch-2
Browse files Browse the repository at this point in the history
Fix: Click on More... opens wrong day view, it shoud open clicked day view
  • Loading branch information
aldabil21 authored Feb 21, 2025
2 parents 73ecd47 + 0ca1eba commit a66f5fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/events/MonthEvents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const MonthEvents = ({
style={{ top: topSpace, fontSize: 11 }}
onClick={(e) => {
e.stopPropagation();
onViewMore(event.start);
onViewMore(today);
}}
>
{`${Math.abs(events.length - i)} ${translations.moreEvents}`}
Expand Down

0 comments on commit a66f5fe

Please sign in to comment.