Simple loading state for job details in a job row

This commit is contained in:
Michael Lange 2017-10-03 16:24:30 -07:00
parent e16fe35539
commit 74fce03d4d
1 changed files with 7 additions and 1 deletions

View File

@ -4,7 +4,13 @@
</td>
<td>{{job.type}}</td>
<td>{{job.priority}}</td>
<td>{{job.taskGroups.length}}</td>
<td>
{{#if job.isReloading}}
...
{{else}}
{{job.taskGroups.length}}
{{/if}}
</td>
<td>
<div class="inline-chart">{{allocation-status-bar allocationContainer=job isNarrow=true}}</div>
</td>