fix #4448: ui: verify jobs: add namespace and max-depth columns

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-01-04 11:14:06 +01:00
parent 25f7d2a91a
commit b2a9d6a71c

View File

@ -13,6 +13,8 @@ Ext.define('pbs-verify-jobs-status', {
}, },
}, },
'comment', 'comment',
'ns',
'max-depth',
], ],
idProperty: 'id', idProperty: 'id',
proxy: { proxy: {
@ -189,6 +191,20 @@ Ext.define('PBS.config.VerifyJobView', {
dataIndex: 'store', dataIndex: 'store',
flex: 1, flex: 1,
}, },
{
header: gettext('Namespace'),
dataIndex: 'ns',
minWidth: 75,
flex: 2,
sortable: true,
renderer: PBS.Utils.render_optional_namespace,
},
{
header: gettext('Max. Depth'),
dataIndex: 'max-depth',
width: 90,
sortable: true,
},
{ {
header: gettext('Skip Verified'), header: gettext('Skip Verified'),
dataIndex: 'ignore-verified', dataIndex: 'ignore-verified',