ui: ha: calculate service name in model to fix sorting
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
f18dacb78f
commit
7ce422bbc0
@ -145,16 +145,7 @@ Ext.define('PVE.ha.ResourcesView', {
|
||||
header: gettext('Name'),
|
||||
width: 100,
|
||||
sortable: true,
|
||||
dataIndex: 'sid',
|
||||
renderer: function(value, metaData, record) {
|
||||
let res = value.match(/^(\S+):(\S+)$/);
|
||||
if (res[1] !== 'vm' && res[1] !== 'ct') {
|
||||
return '-';
|
||||
}
|
||||
//var guestType = res[1];
|
||||
let vmid = res[2];
|
||||
return PVE.data.ResourceStore.guestName(vmid);
|
||||
}
|
||||
dataIndex: 'vname',
|
||||
},
|
||||
{
|
||||
header: gettext('Max. Restart'),
|
||||
|
@ -72,7 +72,21 @@ Ext.define('PVE.ha.StatusView', {
|
||||
'id', 'type', 'node', 'status', 'sid',
|
||||
'state', 'group', 'comment',
|
||||
'max_restart', 'max_relocate', 'type',
|
||||
'crm_state', 'request_state'
|
||||
'crm_state', 'request_state',
|
||||
{
|
||||
name: 'vname',
|
||||
convert: function(value, record) {
|
||||
let sid = record.data.sid;
|
||||
if (!sid) return '';
|
||||
|
||||
let res = sid.match(/^(\S+):(\S+)$/);
|
||||
if (res[1] !== 'vm' && res[1] !== 'ct') {
|
||||
return '-';
|
||||
}
|
||||
let vmid = res[2];
|
||||
return PVE.data.ResourceStore.guestName(vmid);
|
||||
},
|
||||
},
|
||||
],
|
||||
idProperty: 'id'
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user