From b2a9d6a71c5c1ec383e91df571b5b5025111f0cc Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 4 Jan 2023 11:14:06 +0100 Subject: [PATCH] fix #4448: ui: verify jobs: add namespace and max-depth columns Signed-off-by: Thomas Lamprecht --- www/config/VerifyView.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/www/config/VerifyView.js b/www/config/VerifyView.js index 91ce3a43..cd6307a1 100644 --- a/www/config/VerifyView.js +++ b/www/config/VerifyView.js @@ -13,6 +13,8 @@ Ext.define('pbs-verify-jobs-status', { }, }, 'comment', + 'ns', + 'max-depth', ], idProperty: 'id', proxy: { @@ -189,6 +191,20 @@ Ext.define('PBS.config.VerifyJobView', { dataIndex: 'store', 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'), dataIndex: 'ignore-verified',