ui: gc view: remove unnecessary widths in columns

setting `width` and `flex` in a column simultaneously won't work, and
the `flex` value takes priority. So remove the unused `width`
properties.

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2024-04-22 13:05:05 +02:00 committed by Fabian Grünbichler
parent 7a23a7ca5d
commit b7fce90b12

View File

@ -166,7 +166,6 @@ Ext.define('PBS.config.GCJobView', {
renderer: Ext.String.htmlEncode,
sortable: true,
hideable: false,
width: 150,
minWidth: 120,
maxWidth: 300,
flex: 2,
@ -177,7 +176,6 @@ Ext.define('PBS.config.GCJobView', {
sortable: false,
hideable: false,
renderer: (value) => value ? value : Proxmox.Utils.NoneText,
width: 85,
minWidth: 85,
flex: 1,
},
@ -202,7 +200,6 @@ Ext.define('PBS.config.GCJobView', {
dataIndex: 'last-run-state',
renderer: PBS.Utils.render_task_status,
sortable: true,
width: 100,
minWidth: 80,
flex: 1,
},