status view: query and update pveInfoWidget too for now

we may want to replace them someday, at least with an intermediate
widget xtype for unified querying, but it's only going through the
local descendant, which is not that bad size-wise, so don't care..

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-04-22 20:30:28 +02:00
parent ef7a8290db
commit 689fa8a52c

View File

@ -97,8 +97,8 @@ Ext.define('Proxmox.panel.StatusView', {
if (!success) { if (!success) {
return; // do not update if store load was not successful return; // do not update if store load was not successful
} }
me.query('pmxInfoWidget').forEach(me.updateField, me); me.query('pmxInfoWidget').forEach(me.updateField, me);
me.query('pveInfoWidget').forEach(me.updateField, me);
me.updateTitle(store); me.updateTitle(store);
}, },