From 9080741a41ce398d05a3ad7745241c1b47800d4e Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Sat, 12 Aug 2023 13:44:33 +0100 Subject: Fixes conditional rendering in LallansIssue.astro --- src/components/LallansIssue.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/LallansIssue.astro') diff --git a/src/components/LallansIssue.astro b/src/components/LallansIssue.astro index e57a33c..37f1417 100644 --- a/src/components/LallansIssue.astro +++ b/src/components/LallansIssue.astro @@ -30,8 +30,8 @@ const t = translate(locale); { 'contributions' in issue ? ( ) : ( - 'contributors' in issue ? ( + 'contributors' in issue && ( - ) : (<>) + ) ) } \ No newline at end of file -- cgit v1.2.3