fix(talks): event list spacing

This commit is contained in:
Oliver Davies 2023-07-04 06:45:00 +01:00
parent 7914911db5
commit 36d11d7654

View file

@ -32,13 +32,13 @@ const { events } = Astro.props;
</a>
) : (
event.name
)}
{event.location && `in ${event.location} -`}
)}{" "}
{event.location && `in ${event.location} -`}{" "}
{new Date(event.date).toLocaleDateString("en-GB", {
day: "numeric",
month: "long",
year: "numeric",
})}
})}{" "}
{event.online && "(online)"}
</li>
))}