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 CB0621FF13A for ; Wed, 08 Jul 2026 15:05:43 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id A0AB9214DA; Wed, 08 Jul 2026 15:05:29 +0200 (CEST) From: Elias Huhsovitz To: pve-devel@lists.proxmox.com Subject: [PATCH manager 3/4] fix #6211: ui: vm: options: Date: Wed, 8 Jul 2026 15:04:50 +0200 Message-ID: <20260708130453.166084-4-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: 1783515885914 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: 2J3RGIGICUUXQ6OW5EVX5KPGQ3QS3CPZ X-Message-ID-Hash: 2J3RGIGICUUXQ6OW5EVX5KPGQ3QS3CPZ 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 help buttons in the AMD SEV and Intel TDX dialos were pointing to the general memory documentation. Update the links to use the correct documentation anchors Signed-off-by: Elias Huhsovitz --- www/manager6/qemu/SevEdit.js | 2 +- www/manager6/qemu/TdxEdit.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www/manager6/qemu/SevEdit.js b/www/manager6/qemu/SevEdit.js index 44db34bd..c308b3ab 100644 --- a/www/manager6/qemu/SevEdit.js +++ b/www/manager6/qemu/SevEdit.js @@ -2,7 +2,7 @@ Ext.define('PVE.qemu.SevInputPanel', { extend: 'Proxmox.panel.InputPanel', xtype: 'pveSevInputPanel', - onlineHelp: 'qm_memory', // TODO: change to 'qm_memory_encryption' one available + onlineHelp: 'qm_memory_encryption_sev', viewModel: { data: { diff --git a/www/manager6/qemu/TdxEdit.js b/www/manager6/qemu/TdxEdit.js index c1f990a9..38948a6c 100644 --- a/www/manager6/qemu/TdxEdit.js +++ b/www/manager6/qemu/TdxEdit.js @@ -2,7 +2,7 @@ Ext.define('PVE.qemu.TdxInputPanel', { extend: 'Proxmox.panel.InputPanel', xtype: 'pveTdxInputPanel', - onlineHelp: 'qm_memory', // TODO: change to 'qm_memory_encryption' one available + onlineHelp: 'qm_memory_encryption_tdx', viewModel: { data: { -- 2.47.3