Remove group status cols

Remove the status col from any group list that used the now-removed
computed fields.
This commit is contained in:
Jake McDermott 2020-01-08 12:03:43 -05:00 committed by Ryan Petrello
parent 773b976f8a
commit 44c0eb867b
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777
4 changed files with 6 additions and 25 deletions

View File

@ -598,6 +598,11 @@ table, tbody {
}
.List-staticColumnLayout--groups {
display: grid;
grid-template-columns: @at-space @at-space-5x auto;
}
.List-staticColumnLayout--hostNestedGroups {
display: grid;
grid-template-columns: @at-space @at-space-5x @at-space-5x auto;
}

View File

@ -18,18 +18,6 @@
basePath: 'api/v2/inventories/{{$stateParams.inventory_id}}/groups/',
layoutClass: 'List-staticColumnLayout--groups',
actionHolderClass: 'List-actionHolder List-actionHolder--rootGroups',
staticColumns: [
{
content: {
label: '',
mode: 'all',
iconOnly: true,
dataPlacement: "top",
columnClass: 'status-column'
}
}
],
fields: {
name: {
label: i18n._('Groups'),

View File

@ -17,18 +17,6 @@
trackBy: 'nested_group.id',
basePath: 'api/v2/groups/{{$stateParams.group_id}}/children/',
layoutClass: 'List-staticColumnLayout--groups',
staticColumns: [
{
content: {
label: '',
mode: 'all',
iconOnly: true,
dataPlacement: "top",
columnClass: 'status-column'
}
}
],
fields: {
name: {
label: i18n._('Groups'),

View File

@ -16,7 +16,7 @@
multiSelect: true,
trackBy: 'nested_group.id',
basePath: 'api/v2/hosts/{{$stateParams.host_id}}/all_groups/',
layoutClass: 'List-staticColumnLayout--groups',
layoutClass: 'List-staticColumnLayout--hostNestedGroups',
staticColumns: [
{
field: 'failed_hosts',