Add volume to the client row

This commit is contained in:
Michael Lange 2020-02-11 19:52:04 -08:00
parent c0f1aff963
commit c57993f0a5
2 changed files with 2 additions and 0 deletions

View file

@ -52,6 +52,7 @@
{{#t.sort-by prop="compositeStatus"}}State{{/t.sort-by}}
<th>Address</th>
{{#t.sort-by prop="datacenter"}}Datacenter{{/t.sort-by}}
<th># Volumes</th>
<th># Allocs</th>
{{/t.head}}
{{#t.body as |row|}}

View file

@ -14,6 +14,7 @@
</td>
<td data-test-client-address>{{node.httpAddr}}</td>
<td data-test-client-datacenter>{{node.datacenter}}</td>
<td data-test-client-volumes>{{if node.hostVolumes.length node.hostVolumes.length}}</td>
<td data-test-client-allocations>
{{#if node.allocations.isPending}}
...