Skip to content

Commit

Permalink
🐛 : correct job numbering
Browse files Browse the repository at this point in the history
resolves #141
  • Loading branch information
juwit committed Sep 23, 2019
1 parent 0c1f041 commit e846485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/templates/stack.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ <h2><span><i class="fas fa-history"></i> Job history</span></h2>
</div>
<ul class="job_list">
<li v-for="(job, index) in jobs" :class="job.status" class="job">
<div class="job_id"><a :href="'/stacks/' + job.stackId + '/jobs/' + job.id">Job #{{index+1}}</a></div>
<div class="job_id"><a :href="'/stacks/' + job.stackId + '/jobs/' + job.id">Job #{{jobs.length - index}}</a></div>
<div class="job_detail">
<div><span class="job_attr_id">Type</span><span class="job_attr_value" :class="job.type">{{job.type}}</span></div>
<div><span class="job_attr_id">Status</span><span class="job_attr_value" :class="job.status">{{job.status}}</span></div>
Expand Down

0 comments on commit e846485

Please sign in to comment.