Skip to content

Commit

Permalink
Show success/failure count on the jobs dashboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
tooolbox committed May 26, 2020
1 parent c9a012f commit 1fc3993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ var jobsTable = new Reef('#jobsTable', {
<td>${job.owner}</td>
<td>${jobType(job.type)}</td>
<td>${job.disabled ? 'Disabled' : 'Enabled'}</td>
<td>${job.stats ? job.stats.length : 0}</td>
<td>${job.metadata ? job.metadata.success_count + '/' + job.metadata.number_of_finished_runs : 0}</td>
<td>${job.is_done}</td>
</tr>
`
Expand All @@ -125,7 +125,7 @@ var jobsTable = new Reef('#jobsTable', {
<th>Owner</th>
<th>Type</th>
<th>Status</th>
<th>Runs</th>
<th>Success</th>
<th>Done</th>
</tr>
</thead>
Expand Down

0 comments on commit 1fc3993

Please sign in to comment.