forked from DebaucheryLibrarian/traxxx
Storing and fetching tags.
This commit is contained in:
@@ -14,6 +14,7 @@ class Home extends React.Component {
|
||||
<th>Site</th>
|
||||
<th>Title</th>
|
||||
<th>Actors</th>
|
||||
<th>Tags</th>
|
||||
</tr>
|
||||
|
||||
{this.props.releases.map(release => (
|
||||
@@ -23,7 +24,8 @@ class Home extends React.Component {
|
||||
<td>{ release.shootId || release.entryId }</td>
|
||||
<td>{ release.site.name }</td>
|
||||
<td>{ release.title }</td>
|
||||
<td>{ release.actors && release.actors.map(actor => actor.name).join(', ') }</td>
|
||||
<td>{ release.actors.map(actor => actor.name).join(', ') }</td>
|
||||
<td>{ release.tags.map(tag => tag.tag).join(', ') }</td>
|
||||
</tr>
|
||||
))}
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user