[pve-devel] [PATCH manager 1/1] ui: ha: remove group info from HA status string in guest status view
Michael Köppl
m.koeppl at proxmox.com
Fri Sep 19 16:06:18 CEST 2025
Groups have been deprecated in favor of rules, so this information
should no longer be displayed. Since there is no longer a 1:1 mapping of
resources to groups and resources could be in many rules, displaying
information about the rules in this view would clutter the guest status
view. In addition, finding the rules of which the resource is a part of
adds a lot more complexity than getting the group did. Thus, the
information is omitted from the status text altogether.
Signed-off-by: Michael Köppl <m.koeppl at proxmox.com>
---
www/manager6/Utils.js | 3 ---
1 file changed, 3 deletions(-)
diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js
index c48ee0b25..93e026b43 100644
--- a/www/manager6/Utils.js
+++ b/www/manager6/Utils.js
@@ -1014,9 +1014,6 @@ Ext.define('PVE.Utils', {
if (value.managed) {
text = value.state || Proxmox.Utils.noneText;
-
- text += ', ' + Proxmox.Utils.groupText + ': ';
- text += value.group || Proxmox.Utils.noneText;
}
return text;
--
2.47.3
More information about the pve-devel
mailing list