Skip to content

Commit

Permalink
fix: correct enrolled count
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihai Nicolae committed Sep 7, 2023
1 parent 80dd3c4 commit 0adb579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabs/src/components/activity/EventList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function EventList({
</Box>
</Tooltip>
)}
{row.IsUpcoming && row.NoOfRegistered > 0 && (
{(row.IsUpcoming || row.IsCurrent) && row.NoOfRegistered > 0 && (
<Tooltip title={configuration.NoOfRegisteredTooltip}>
<Box className="grid-cell">
<Link
Expand Down

0 comments on commit 0adb579

Please sign in to comment.