Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,39 @@
<thead>
<tr>
<th>Event name</th>
<th>No-show rate</th>
<th>Drop-off rate</th>
<th>Get list</th>

<th>
No-show rate
<span

Check warning on line 125 in src/components/CommunityPortal/Reports/Participation/DropOffTracking.jsx

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Ambiguous spacing before next element span

See more on https://sonarcloud.io/project/issues?id=OneCommunityGlobal_HighestGoodNetworkApp&issues=AZz99F6vUFKUEyQfMWdI&open=AZz99F6vUFKUEyQfMWdI&pullRequest=4622
className={styles.infoIcon}
title="Percentage of registered participants who did not attend the event. Calculated per event based on total registrations."
>
ℹ️
</span>
</th>

<th>
Drop-off rate
<span

Check warning on line 135 in src/components/CommunityPortal/Reports/Participation/DropOffTracking.jsx

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Ambiguous spacing before next element span

See more on https://sonarcloud.io/project/issues?id=OneCommunityGlobal_HighestGoodNetworkApp&issues=AZz99F6vUFKUEyQfMWdJ&open=AZz99F6vUFKUEyQfMWdJ&pullRequest=4622
className={styles.infoIcon}
title="Percentage of participants who joined the event but left before it was completed. Calculated per event based on total registrations."
>
ℹ️
</span>
</th>

<th>
Get list
<span

Check warning on line 145 in src/components/CommunityPortal/Reports/Participation/DropOffTracking.jsx

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Ambiguous spacing before next element span

See more on https://sonarcloud.io/project/issues?id=OneCommunityGlobal_HighestGoodNetworkApp&issues=AZz99F6vUFKUEyQfMWdK&open=AZz99F6vUFKUEyQfMWdK&pullRequest=4622
className={styles.infoIcon}
title="View the list of no-show participants for this event and send follow-up emails."
>
ℹ️
</span>
</th>
</tr>
</thead>

<tbody>
{filteredEvents.map(event => (
<tr key={event.id}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1060,4 +1060,25 @@
.insightsDark .insightsTab.activeTab {
background-color: #007bff;
color: #ffffff;
}

/* ---------- Info Tooltip Icons ---------- */
.infoIcon {
margin-left: 6px;
font-size: 0.85rem;
cursor: pointer;
color: #666;
vertical-align: middle;
}

.infoIcon:hover {
color: #000;
}

.trackingTableDark .infoIcon {
color: #cccccc;
}

.trackingTableDark .infoIcon:hover {
color: #ffffff;
}
Loading