summaryrefslogtreecommitdiff
path: root/src/components/LallansIssueContributions.astro
diff options
context:
space:
mode:
authorJoe Carstairs <jcarstairs@scottlogic.com>2023-10-05 19:38:55 +0100
committerJoe Carstairs <jcarstairs@scottlogic.com>2023-10-05 19:40:19 +0100
commit2f185ba211d3680be4481ce7f4d299d61601250d (patch)
treefb9e748799c6f4f7de7b9ff4827115a324197efe /src/components/LallansIssueContributions.astro
parentab5abcaac2d19c071bb073d57cd61fa57a627bb2 (diff)
Optimises images
Diffstat (limited to 'src/components/LallansIssueContributions.astro')
-rw-r--r--src/components/LallansIssueContributions.astro5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/LallansIssueContributions.astro b/src/components/LallansIssueContributions.astro
index 98824de..5d3084d 100644
--- a/src/components/LallansIssueContributions.astro
+++ b/src/components/LallansIssueContributions.astro
@@ -21,10 +21,7 @@ const t = translate(locale);
<li>
<span class="italic">{contribution.title}</span>
{'author' in contribution && (
- <span>
- {' '}
- {t(tSite, { key: 'by' })} {contribution.author}
- </span>
+ <span> {t(tSite, { key: 'by' }) + ' ' + contribution.author}</span>
)}
</li>
))