Add ModifyIndex as a sortable column for alloc tables
This commit is contained in:
parent
a10466a68d
commit
f842d009a4
|
@ -3,6 +3,7 @@
|
|||
{{allocation.shortId}}
|
||||
</a>
|
||||
</td>
|
||||
<td>{{allocation.modifyIndex}}</td>
|
||||
<td>{{allocation.name}}</td>
|
||||
<td>
|
||||
<span class="color-swatch {{allocation.clientStatus}}" /> {{allocation.clientStatus}}
|
||||
|
|
|
@ -67,6 +67,7 @@
|
|||
sortDescending=sortDescending as |t|}}
|
||||
{{#t.head}}
|
||||
{{#t.sort-by prop="shortId"}}ID{{/t.sort-by}}
|
||||
{{#t.sort-by prop="modifyIndex" title="Modify Index"}}Modified{{/t.sort-by}}
|
||||
{{#t.sort-by prop="name"}}Name{{/t.sort-by}}
|
||||
{{#t.sort-by prop="statusIndex"}}Status{{/t.sort-by}}
|
||||
{{#t.sort-by prop="node.shortId"}}Node{{/t.sort-by}}
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
class="allocations with-foot" as |t|}}
|
||||
{{#t.head}}
|
||||
{{#t.sort-by prop="shortId"}}ID{{/t.sort-by}}
|
||||
{{#t.sort-by prop="modifyIndex" title="Modify Index"}}Modified{{/t.sort-by}}
|
||||
{{#t.sort-by prop="name"}}Name{{/t.sort-by}}
|
||||
{{#t.sort-by prop="statusIndex"}}Status{{/t.sort-by}}
|
||||
{{#t.sort-by prop="job.name"}}Job{{/t.sort-by}}
|
||||
|
|
Loading…
Reference in New Issue