mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-08-07 06:31:34 +00:00
ui: disks: add 'mounted' column
Signed-off-by: Hannes Laimer <h.laimer@proxmox.com>
This commit is contained in:
parent
3e83971bca
commit
b7e91380ca
@ -35,7 +35,7 @@ Ext.define('pmx-disk-list', {
|
|||||||
return undefined;
|
return undefined;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'vendor', 'model', 'serial', 'rpm', 'type', 'wearout', 'health',
|
'vendor', 'model', 'serial', 'rpm', 'type', 'wearout', 'health', 'mounted',
|
||||||
],
|
],
|
||||||
idProperty: 'devpath',
|
idProperty: 'devpath',
|
||||||
});
|
});
|
||||||
@ -302,6 +302,13 @@ Ext.define('Proxmox.DiskList', {
|
|||||||
renderer: Ext.String.htmlEncode,
|
renderer: Ext.String.htmlEncode,
|
||||||
dataIndex: 'status',
|
dataIndex: 'status',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
header: 'Mounted',
|
||||||
|
width: 60,
|
||||||
|
align: 'right',
|
||||||
|
renderer: Proxmox.Utils.format_boolean,
|
||||||
|
dataIndex: 'mounted',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
header: 'Wearout',
|
header: 'Wearout',
|
||||||
width: 90,
|
width: 90,
|
||||||
|
Loading…
Reference in New Issue
Block a user