mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-08-12 13:53:43 +00:00
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:
parent
7a23a7ca5d
commit
b7fce90b12
@ -166,7 +166,6 @@ Ext.define('PBS.config.GCJobView', {
|
|||||||
renderer: Ext.String.htmlEncode,
|
renderer: Ext.String.htmlEncode,
|
||||||
sortable: true,
|
sortable: true,
|
||||||
hideable: false,
|
hideable: false,
|
||||||
width: 150,
|
|
||||||
minWidth: 120,
|
minWidth: 120,
|
||||||
maxWidth: 300,
|
maxWidth: 300,
|
||||||
flex: 2,
|
flex: 2,
|
||||||
@ -177,7 +176,6 @@ Ext.define('PBS.config.GCJobView', {
|
|||||||
sortable: false,
|
sortable: false,
|
||||||
hideable: false,
|
hideable: false,
|
||||||
renderer: (value) => value ? value : Proxmox.Utils.NoneText,
|
renderer: (value) => value ? value : Proxmox.Utils.NoneText,
|
||||||
width: 85,
|
|
||||||
minWidth: 85,
|
minWidth: 85,
|
||||||
flex: 1,
|
flex: 1,
|
||||||
},
|
},
|
||||||
@ -202,7 +200,6 @@ Ext.define('PBS.config.GCJobView', {
|
|||||||
dataIndex: 'last-run-state',
|
dataIndex: 'last-run-state',
|
||||||
renderer: PBS.Utils.render_task_status,
|
renderer: PBS.Utils.render_task_status,
|
||||||
sortable: true,
|
sortable: true,
|
||||||
width: 100,
|
|
||||||
minWidth: 80,
|
minWidth: 80,
|
||||||
flex: 1,
|
flex: 1,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user