diff options
Diffstat (limited to 'web/app/view/Groups.js')
-rw-r--r-- | web/app/view/Groups.js | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/web/app/view/Groups.js b/web/app/view/Groups.js index 07345cb0..0c166f1f 100644 --- a/web/app/view/Groups.js +++ b/web/app/view/Groups.js @@ -46,9 +46,15 @@ Ext.define('Traccar.view.Groups', { selectionchange: 'onSelectionChange' }, - columns: [{ - text: Strings.sharedName, - dataIndex: 'name', - flex: 1 - }] + forceFit: true, + + columns: { + defaults: { + minWidth: Traccar.Style.columnWidthNormal + }, + items: [{ + text: Strings.sharedName, + dataIndex: 'name' + }] + } }); |