Since we already have the information from the API call, why not add it as a (hidden) column. It can be useful to quickly see which ceph applications are enabled for a pool in some situations.
Signed-off-by: Aaron Lauterer <a.laute...@proxmox.com> --- as mentioned in the cover letter, this patch has nothing directly to do with the series, but since I rely on the application info of the pool to enable/disable the namespace grid, why not make it possible to see that info of the pools as well in the pool grid if wanted. www/manager6/ceph/Pool.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/www/manager6/ceph/Pool.js b/www/manager6/ceph/Pool.js index 16479fee..9346c939 100644 --- a/www/manager6/ceph/Pool.js +++ b/www/manager6/ceph/Pool.js @@ -307,6 +307,14 @@ Ext.define('PVE.node.Ceph.PoolList', { dataIndex: 'type', hidden: true, }, + { + text: gettext('Application'), + minWidth: 100, + flex: 1, + dataIndex: 'application_metadata', + hidden: true, + renderer: (v, _meta, _rec) => Object.keys(v).toString(), + }, { text: gettext('Size') + '/min', minWidth: 100, -- 2.39.5 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel