@@ -227,6 +273,7 @@ function Facts({ event, accent }: { event: EventRecord; accent: string }) {
)}
{when &&
{when}}
+ {schedule &&
{schedule}}
{where &&
{where}}
{event.is_online && where !== 'Online' && (
Online too
diff --git a/src/pages/sections/EventList-Cards.tsx b/src/pages/sections/EventList-Cards.tsx
index 927900b..bacd614 100644
--- a/src/pages/sections/EventList-Cards.tsx
+++ b/src/pages/sections/EventList-Cards.tsx
@@ -8,6 +8,7 @@ import {
} from "../../data/eventData.js";
import { eventHref } from "../../lib/hrefs.ts";
import { EVENT_TYPES, eventTypeLabel, type EventType } from "../../lib/eventTypes.ts";
+import { seriesLabel } from "../../lib/eventSeries.ts";
import type { EventListItem } from "../../lib/useContent.ts";
import type { SectionToggleProps } from "../../lib/sections.tsx";
@@ -195,6 +196,7 @@ export function Card({
const color = ev.color || defaultColor;
const orgLogo = ev.org_logo || DEFAULT_ORG_LOGO;
const eventLogo = ev.event_logo;
+ const schedule = seriesLabel(ev.series, ev.starts_on);
const links = ev.links ?? [];
const igHandle = ev.instagram || null;
const igUrl = igHandle
@@ -255,6 +257,7 @@ export function Card({
"{ev.theme}"
)}
{ev.date_label &&
{ev.date_label}
}
+ {schedule &&
{schedule}
}
{ev.location_label && (
{ev.location_label}
)}
@@ -282,6 +285,7 @@ export function Card({
"{ev.theme}"
)}
{ev.date_label &&
{ev.date_label}
}
+ {schedule &&
{schedule}
}
{ev.location_label && (
{ev.location_label}
)}