mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-08-14 14:39:58 +00:00
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:
parent
25f7d2a91a
commit
b2a9d6a71c
@ -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',
|
||||||
|
Loading…
Reference in New Issue
Block a user