From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 627AB1FF0ED for ; Fri, 31 Jul 2026 17:36:58 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 48E8921614; Fri, 31 Jul 2026 17:36:39 +0200 (CEST) From: Jakob Klocker To: pve-devel@lists.proxmox.com Subject: [PATCH pve-manager 8/9] www: storage: distinguish failed/outdated storage plugins in resource tree Date: Fri, 31 Jul 2026 17:36:16 +0200 Message-ID: <20260731153617.358265-9-j.klocker@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260731153617.358265-1-j.klocker@proxmox.com> References: <20260731153617.358265-1-j.klocker@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 1 AWL -0.554 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods RDNS_NONE 1.274 Delivered to internal network by a host with no rDNS SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record Message-ID-Hash: FABXMGBRITUX636LFX35TIV6GU5PJDJX X-Message-ID-Hash: FABXMGBRITUX636LFX35TIV6GU5PJDJX X-MailFrom: jklocker@dev.proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Jakob Klocker X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Render storage nodes whose plugin failed to load or is outdated with a distinct icon in the resource tree. Signed-off-by: Jakob Klocker --- www/manager6/Utils.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js index 2f098ff0..1cb188c1 100644 --- a/www/manager6/Utils.js +++ b/www/manager6/Utils.js @@ -1351,6 +1351,10 @@ Ext.define('PVE.Utils', { }; return networkTypeMapping[record['network-type']] ?? ''; + } else if (type === 'storage' && record.pluginstate === 'load-error') { + return 'fa fa-database error faded'; + } else if (type === 'storage' && record.pluginstate === 'outdated') { + return 'fa fa-database pending'; } else if (type === 'storage' && record.content === 'import') { return 'fa fa-cloud-download'; } else { -- 2.47.3