0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 16:22:44 +00:00

bring back the comma!

This commit is contained in:
Víctor Losada Hernández
2024-09-03 23:07:23 +02:00
parent abb2d57879
commit 1e36e63ed6

View File

@@ -141,13 +141,13 @@ const BrewItem = createClass({
</> : <></>
}
<span title={`Authors:\n${brew.authors?.join('\n')}`}>
<i className='fas fa-user'/>
{brew.authors?.map((author, index) => (
<i className='fas fa-user'/> {brew.authors?.map((author, index) => (
<React.Fragment key={index}>
{author === 'hidden'
? <span title="Username contained an email address; hidden to protect user's privacy">{author}</span>
: <a href={`/user/${author}`}>{author}</a>
}
{index < brew.authors.length - 1 && ', '}
</React.Fragment>
))}
</span>