ServiceView.js: use flex instead of fixed width

This commit is contained in:
Dietmar Maurer 2017-03-07 17:16:05 +01:00
parent 8f7370eea1
commit ab29b73d6b

View File

@ -131,7 +131,7 @@ Ext.define('Proxmox.node.ServiceView', {
columns: [ columns: [
{ {
header: gettext('Name'), header: gettext('Name'),
width: 100, flex: 1,
sortable: true, sortable: true,
dataIndex: 'name' dataIndex: 'name'
}, },
@ -145,7 +145,7 @@ Ext.define('Proxmox.node.ServiceView', {
header: gettext('Description'), header: gettext('Description'),
renderer: Ext.String.htmlEncode, renderer: Ext.String.htmlEncode,
dataIndex: 'desc', dataIndex: 'desc',
flex: 1 flex: 2
} }
], ],
listeners: { listeners: {