Fixes issue with inventory group names that are extremely long.

This commit is contained in:
Alex Corey 2019-03-14 07:28:29 -04:00
parent a63a204a21
commit 2650cbfc87
3 changed files with 5 additions and 5 deletions

View File

@ -109,7 +109,7 @@ table, tbody {
.List-tableCell {
padding: 7px 15px;
border-top:0px!important;
word-wrap: break-word;
word-break: break-word;
display: flex;
align-items: center;
height: 100%;

View File

@ -38,7 +38,7 @@
label: i18n._('Groups'),
key: true,
uiSref: "inventories.edit.groups.edit({group_id:group.id})",
columnClass: 'col-lg-6 col-md-6 col-sm-6 col-xs-6',
columnClass: 'col-lg-10 col-md-10 col-sm-10 col-xs-10',
class: 'InventoryManage-breakWord',
}
},
@ -98,7 +98,7 @@
fieldActions: {
columnClass: 'col-lg-6 col-md-6 col-sm-6 col-xs-6 text-right',
columnClass: 'col-lg-2 col-md-2 col-sm-2 col-xs-2 text-right',
edit: {
//label: 'Edit',

View File

@ -64,7 +64,7 @@ export default ['i18n', function(i18n) {
label: i18n._('Hosts'),
uiSref: ".edit({inventory_id: host.inventory_id,host_id: host.id})",
ngClass: "{ 'host-disabled-label': !host.enabled }",
columnClass: 'col-lg-3 col-md-4 col-sm-8 col-xs-7',
columnClass: 'col-lg-5 col-md-4 col-sm-8 col-xs-7',
dataHostId: "{{ host.id }}",
dataType: "host",
class: 'InventoryManage-breakWord'
@ -80,7 +80,7 @@ export default ['i18n', function(i18n) {
fieldActions: {
columnClass: 'col-sm-4 col-xs-5 text-right',
columnClass: 'col-lg-2 col-sm-4 col-xs-5 text-right',
edit: {
ngClick: "editHost(host)",
icon: 'icon-edit',