mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-22 07:27:51 +00:00
basic ui and small changes
This commit is contained in:
@@ -55,7 +55,16 @@ const ArchivePage = createClass({
|
||||
<dd>{brew.title}</dd>
|
||||
|
||||
<dt>Authors:</dt>
|
||||
<dd>{brew.authors.join(', ')}</dd>
|
||||
<dd>
|
||||
{brew.authors.map((author, index) => (
|
||||
<span key={index}>
|
||||
<a href={`/user/${author}`} target='_blank' rel='noopener noreferrer'>
|
||||
{author}
|
||||
</a>
|
||||
{index < brew.authors.length - 1 && ', '}
|
||||
</span>
|
||||
))}
|
||||
</dd>
|
||||
|
||||
<a href={`/share/${brew.shareId}`}>Check the brew</a>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user