From 36d11d76545aa8c262fb41749305e36da343778e Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 4 Jul 2023 06:45:00 +0100 Subject: [PATCH] fix(talks): event list spacing --- src/components/talk/Events.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/talk/Events.astro b/src/components/talk/Events.astro index 677c38112..3c49b79f8 100644 --- a/src/components/talk/Events.astro +++ b/src/components/talk/Events.astro @@ -32,13 +32,13 @@ const { events } = Astro.props; ) : ( 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)"} ))}