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
2 changed files with 6 additions and 1 deletions

View File

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

View File

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