Node Pools moved to after Type in jobs index columns (#17738)

This commit is contained in:
Phil Renaud 2023-06-26 17:00:01 -04:00 committed by GitHub
parent d590123637
commit 32af971bcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 13 deletions

View File

@ -20,6 +20,13 @@
</div>
<div class="toolbar-item is-right-aligned is-mobile-full-width">
<div class="button-bar">
<MultiSelectDropdown
data-test-state-facet
@label="State"
@options={{this.optionsState}}
@selection={{this.selectionState}}
@onSelect={{action this.setFacetQueryParam "qpState"}}
/>
<MultiSelectDropdown
data-test-node-pool-facet
@label="Node Pool"
@ -34,13 +41,6 @@
@selection={{this.selectionClass}}
@onSelect={{action this.setFacetQueryParam "qpClass"}}
/>
<MultiSelectDropdown
data-test-state-facet
@label="State"
@options={{this.optionsState}}
@selection={{this.selectionState}}
@onSelect={{action this.setFacetQueryParam "qpState"}}
/>
<MultiSelectDropdown
data-test-datacenter-facet
@label="Datacenter"

View File

@ -31,9 +31,6 @@
{{this.job.namespace.name}}
</td>
{{/if}}
<td data-test-job-node-pool>
{{this.job.nodePool}}
</td>
{{/if}}
{{#if (eq @context "child")}}
<td data-test-job-submit-time>
@ -49,6 +46,9 @@
<td data-test-job-type>
{{this.job.displayType.type}}
</td>
<td data-test-job-node-pool>
{{this.job.nodePool}}
</td>
<td data-test-job-priority>
{{this.job.priority}}
</td>

View File

@ -143,15 +143,15 @@
Namespace
</t.sort-by>
{{/if}}
<t.sort-by @prop="nodePool">
Node Pool
</t.sort-by>
<t.sort-by @prop="status">
Status
</t.sort-by>
<t.sort-by @prop="type">
Type
</t.sort-by>
<t.sort-by @prop="nodePool">
Node Pool
</t.sort-by>
<t.sort-by @prop="priority">
Priority
</t.sort-by>