From 689fa8a52cd49ff372725242ec1d0bda9d9e33d1 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 22 Apr 2021 20:30:28 +0200 Subject: [PATCH] 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 --- src/panel/StatusView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panel/StatusView.js b/src/panel/StatusView.js index 0180fe9..4a60dae 100644 --- a/src/panel/StatusView.js +++ b/src/panel/StatusView.js @@ -97,8 +97,8 @@ Ext.define('Proxmox.panel.StatusView', { if (!success) { return; // do not update if store load was not successful } - me.query('pmxInfoWidget').forEach(me.updateField, me); + me.query('pveInfoWidget').forEach(me.updateField, me); me.updateTitle(store); },