diff options
-rw-r--r-- | web/src/containers/jobs/Jobs.jsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/src/containers/jobs/Jobs.jsx b/web/src/containers/jobs/Jobs.jsx index 7f28433c7..8462d468f 100644 --- a/web/src/containers/jobs/Jobs.jsx +++ b/web/src/containers/jobs/Jobs.jsx @@ -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: { |