diff --git a/src/components/CommunityPortal/Reports/Participation/mockData.jsx b/src/components/CommunityPortal/Reports/Participation/mockData.jsx
index d822006b4d..502ee4d9de 100644
--- a/src/components/CommunityPortal/Reports/Participation/mockData.jsx
+++ b/src/components/CommunityPortal/Reports/Participation/mockData.jsx
@@ -64,7 +64,7 @@ for (let t = 0; t < 3; t++) {
eventType: eventTypes[t % eventTypes.length],
eventDate: eventDate.toISOString(),
eventTime: formatDisplayTime(eventDate),
- eventName: `Today’s Event ${id}`,
+ eventName: `Event ${id}`,
attendees: secureRandInt(20, 99),
noShowRate: `${secureRandInt(5, 94)}%`,
dropOffRate: `${secureRandInt(10, 79)}%`,
From 288cdeb3527df6ea766d389429c2a78d0151e9a8 Mon Sep 17 00:00:00 2001
From: kristin-7 <46657300+KH07@users.noreply.github.com>
Date: Fri, 19 Dec 2025 15:21:44 -0800
Subject: [PATCH 2/9] change filterEvents' time
---
.../CommunityPortal/Reports/Participation/MyCases.jsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/CommunityPortal/Reports/Participation/MyCases.jsx b/src/components/CommunityPortal/Reports/Participation/MyCases.jsx
index d57167921b..c8f4574133 100644
--- a/src/components/CommunityPortal/Reports/Participation/MyCases.jsx
+++ b/src/components/CommunityPortal/Reports/Participation/MyCases.jsx
@@ -14,11 +14,11 @@ function MyCases() {
const filterEvents = events => {
const now = new Date();
- const nowTime = now.getTime();
+ const startOfToday = new Date(now.getFullYear(), now.getMonth(), now.getDate()).getTime();
const upcomingEvents = events.filter(event => {
const eventTime = new Date(event.eventDate).getTime();
- return eventTime >= nowTime;
+ return eventTime >= startOfToday;
});
if (filter === 'today') {
From 1fac77a6ff8303b617b7c412d22dc529e2f4e6ae Mon Sep 17 00:00:00 2001
From: kristin-7 <46657300+KH07@users.noreply.github.com>
Date: Sat, 24 Jan 2026 12:27:22 -0800
Subject: [PATCH 3/9] make drop down menus fit into dark mode
---
.../Reports/Participation/DropOffTracking.jsx | 12 +-
.../Participation/EventParticipation.jsx | 6 +-
.../Reports/Participation/MyCases.module.css | 106 ++++++++++++++++--
.../Participation/Participation.module.css | 22 +++-
4 files changed, 133 insertions(+), 13 deletions(-)
diff --git a/src/components/CommunityPortal/Reports/Participation/DropOffTracking.jsx b/src/components/CommunityPortal/Reports/Participation/DropOffTracking.jsx
index 1b78c10355..a71ef8564c 100644
--- a/src/components/CommunityPortal/Reports/Participation/DropOffTracking.jsx
+++ b/src/components/CommunityPortal/Reports/Participation/DropOffTracking.jsx
@@ -55,14 +55,22 @@ function DropOffTracking() {
Drop-off and no-show rate tracking
-