From 1eb6262ac885a39c6c41a5b1f90b3117a1f30a91 Mon Sep 17 00:00:00 2001 From: Chris Swithinbank Date: Fri, 1 Sep 2023 21:51:40 +0200 Subject: Fixes for Astro v3 (#629) --- packages/starlight/components/LastUpdated.astro | 2 +- packages/starlight/components/SidebarSublist.astro | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/packages/starlight/components/LastUpdated.astro b/packages/starlight/components/LastUpdated.astro index 534da826..278057e9 100644 --- a/packages/starlight/components/LastUpdated.astro +++ b/packages/starlight/components/LastUpdated.astro @@ -28,7 +28,7 @@ try { { date && (

- {t('page.lastUpdated')} + {t('page.lastUpdated')}{' '} diff --git a/packages/starlight/components/SidebarSublist.astro b/packages/starlight/components/SidebarSublist.astro index fe731ff7..c1049feb 100644 --- a/packages/starlight/components/SidebarSublist.astro +++ b/packages/starlight/components/SidebarSublist.astro @@ -21,10 +21,13 @@ interface Props { > {entry.label} {entry.badge && ( - + <> + {' '} + + )} ) : ( -- cgit