diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/LallansIssue.astro | 4 |
1 files changed, 2 insertions, 2 deletions
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 ? ( <LallansIssueContributions contributions={issue.contributions} locale={locale} /> ) : ( - 'contributors' in issue ? ( + 'contributors' in issue && ( <LallansIssueContributors contributors={issue.contributors} /> - ) : (<></>) + ) ) }
\ No newline at end of file |
