diff options
Diffstat (limited to 'web/src/containers/build/Summary.jsx')
-rw-r--r-- | web/src/containers/build/Summary.jsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web/src/containers/build/Summary.jsx b/web/src/containers/build/Summary.jsx index 90eea6af7..e3003d0dc 100644 --- a/web/src/containers/build/Summary.jsx +++ b/web/src/containers/build/Summary.jsx @@ -47,9 +47,15 @@ class Summary extends React.Component { if (column === 'job_name') { label = 'job' value = ( + <React.Fragment> <Link to={this.props.tenant.linkPrefix + '/job/' + value}> {value} </Link> + <span> — </span> + <Link to={this.props.tenant.linkPrefix + '/builds?job_name=' + value + '&project=' + build.project} title="See previous runs of this job inside current project."> + build history + </Link> + </React.Fragment> ) } if (column === 'buildset') { |