mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-06-13 07:35:40 +00:00
fix missing mons array in ceph status output
on setups with 1 monitor, timechecks has no monitor array Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
e099be45b7
commit
5c38487d83
@ -158,7 +158,7 @@ Ext.define('PVE.ceph.StatusDetail', {
|
||||
return (a.name < b.name)?-1:(a.name > b.name)?1:0;
|
||||
});
|
||||
|
||||
var monTimes = record.data.health.timechecks.mons;
|
||||
var monTimes = record.data.health.timechecks.mons || [];
|
||||
var timechecks = {};
|
||||
var monContainer = me.getComponent('monitors');
|
||||
var i;
|
||||
|
Loading…
Reference in New Issue
Block a user