Merge pull request #3435 from AlexSCorey/3421-fixInventoryGroupColumnV2

Fix inventory column  width issues to make their contents readable

Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-03-18 14:26:17 +00:00 committed by GitHub
commit 62e1d5fdd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -587,6 +587,11 @@ table, tbody {
}
.List-staticColumnLayout--groups {
display: grid;
grid-template-columns: 5px 25px auto;
}
.List-staticColumnLayout--inventoryGroups {
display: grid;
grid-template-columns: 5px 25px 25px auto;
}

View File

@ -16,7 +16,7 @@
multiSelect: true,
trackBy: 'group.id',
basePath: 'api/v2/inventories/{{$stateParams.inventory_id}}/groups/',
layoutClass: 'List-staticColumnLayout--groups',
layoutClass: 'List-staticColumnLayout--inventoryGroups',
staticColumns: [
{
field: 'failed_hosts',