mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-27 09:59:33 +00:00
ui: don't show tags/lock column in pool member grid
we use a different api call where we currently don't have the tags or lock, so don't add the columns there Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
642d9db8e1
commit
4d9e2176e2
@ -160,7 +160,9 @@ Ext.define('PVE.grid.PoolMembers', {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
var coldef = PVE.data.ResourceStore.defaultColumns();
|
var coldef = PVE.data.ResourceStore.defaultColumns().filter((c) =>
|
||||||
|
c.dataIndex !== 'tags' && c.dataIndex !== 'lock',
|
||||||
|
);
|
||||||
|
|
||||||
var reload = function() {
|
var reload = function() {
|
||||||
store.load();
|
store.load();
|
||||||
|
Loading…
Reference in New Issue
Block a user