Merge "web: add tags to jobs list"

This commit is contained in:
Zuul 2019-05-16 20:41:49 +00:00 committed by Gerrit Code Review
commit 1901296239
1 changed files with 7 additions and 0 deletions

View File

@ -18,6 +18,7 @@ import { connect } from 'react-redux'
import { Link } from 'react-router-dom'
import {
Checkbox,
Badge,
Form,
FormGroup,
FormControl,
@ -77,6 +78,12 @@ class JobsList extends React.Component {
{job.description && (
<span style={{marginLeft: '10px'}}>{job.description}</span>
)}
{job.tags && job.tags.map((tag, idx) => (
<Badge
key={idx}
pullRight>
{tag}
</Badge>))}
</React.Fragment>),
icon: 'fa fa-cube',
state: {