Skip to content

Commit

Permalink
🐛 : hide empty execution time when job in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
cdubuisson committed Aug 9, 2019
1 parent 81809ce commit 66a8a18
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 @@ -153,7 +153,7 @@ <h2><span><i class="fas fa-history"></i> Job history</span></h2>
<div><span class="job_attr_id">Status</span><span class="job_attr_value" :class="job.status">{{job.status}}</span></div>
<div>
<span class="job_attr_id">Date</span><span class="job_attr_value">{{job.startDateTime | dateTime}}</span>
({{job.executionTime}}&nbsp;ms)
<span v-if="job.executionTime">({{job.executionTime}}&nbsp;ms)</span>
</div>
<div><span class="job_attr_id">User</span><user-badge :user="job.user" :css-class="'job_attr_value'"></user-badge></div>
</div>
Expand Down

0 comments on commit 66a8a18

Please sign in to comment.