add job id to jobs list

This commit is contained in:
Keith Grant 2019-10-18 10:44:39 -07:00
parent a5d9bbb1e6
commit 8b23c6e19a

View File

@ -49,7 +49,9 @@ class JobListItem extends Component {
<Link
to={`/jobs/${JOB_TYPE_URL_SEGMENTS[job.type]}/${job.id}`}
>
<b>{job.name}</b>
<b>
{job.id} &mdash; {job.name}
</b>
</Link>
</span>
</DataListCell>,