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 ED2F21FF13A for ; Wed, 08 Jul 2026 15:05:33 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 8C25B2149D; Wed, 08 Jul 2026 15:05:28 +0200 (CEST) From: Elias Huhsovitz To: pve-devel@lists.proxmox.com Subject: [PATCH manager 4/4] fix #6211: ui: vm: options: Date: Wed, 8 Jul 2026 15:04:51 +0200 Message-ID: <20260708130453.166084-5-e.huhsovitz@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260708130453.166084-1-e.huhsovitz@proxmox.com> References: <20260708130453.166084-1-e.huhsovitz@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1783515886023 X-SPAM-LEVEL: Spam detection results: 0 DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: A6UGQ7YNBAUJTSJUJRAQWYLZQLWQPLTK X-Message-ID-Hash: A6UGQ7YNBAUJTSJUJRAQWYLZQLWQPLTK X-MailFrom: e.huhsovitz@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: Elias Huhsovitz X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: The "protection" options was ambiguous. Add hint to briefly describe the feature. Add help button that points to Options section containing a description of the "protection" option. Signed-off-by: Elias Huhsovitz --- www/manager6/qemu/Options.js | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/www/manager6/qemu/Options.js b/www/manager6/qemu/Options.js index 8a4721a0..664606da 100644 --- a/www/manager6/qemu/Options.js +++ b/www/manager6/qemu/Options.js @@ -319,13 +319,26 @@ Ext.define('PVE.qemu.Options', { ? { xtype: 'proxmoxWindowEdit', subject: gettext('Protection'), + onlineHelp: 'qm_options', items: { - xtype: 'proxmoxcheckbox', - name: 'protection', - uncheckedValue: 0, - defaultValue: 0, - deleteDefaultValue: true, - fieldLabel: gettext('Enabled'), + xtype: 'inputpanel', + items: [ + { + xtype: 'proxmoxcheckbox', + name: 'protection', + uncheckedValue: 0, + defaultValue: 0, + deleteDefaultValue: true, + fieldLabel: gettext('Enabled'), + }, + { + xtype: 'displayfield', + userCls: 'pmx-hint', + value: gettext( + 'Prevents the VM and its disks from being removed', + ), + }, + ], }, } : undefined, -- 2.47.3