summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/src/containers/build/Summary.jsx6
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> &mdash; </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') {