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 6B89A1FF0B7 for ; Tue, 25 Aug 2026 13:02:57 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 4FAC9215FC; Tue, 25 Aug 2026 13:02:45 +0200 (CEST) From: Nicolas Frey To: pve-devel@lists.proxmox.com Subject: [PATCH pve-manager 2/4] ui: cd edit: add `warnVirtio` option to pass to iso selector Date: Tue, 25 Aug 2026 13:02:36 +0200 Message-ID: <20260825110238.215790-3-n.frey@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260825110238.215790-1-n.frey@proxmox.com> References: <20260825110238.215790-1-n.frey@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 1 AWL -1.084 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: SALWT64YAJO5EIRDY6M7HGMDDNM2M67J X-Message-ID-Hash: SALWT64YAJO5EIRDY6M7HGMDDNM2M67J X-MailFrom: nfrey@miso.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 X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Signed-off-by: Nicolas Frey --- www/manager6/qemu/CDEdit.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/manager6/qemu/CDEdit.js b/www/manager6/qemu/CDEdit.js index c185de53..76712f44 100644 --- a/www/manager6/qemu/CDEdit.js +++ b/www/manager6/qemu/CDEdit.js @@ -3,6 +3,7 @@ Ext.define('PVE.qemu.CDInputPanel', { alias: 'widget.pveQemuCDInputPanel', insideWizard: false, + warnVirtio: false, onGetValues: function (values) { var me = this; @@ -100,6 +101,7 @@ Ext.define('PVE.qemu.CDInputPanel', { me.isosel = Ext.create('PVE.form.IsoSelector', { nodename: me.nodename, insideWizard: me.insideWizard, + warnVirtio: me.warnVirtio, name: 'cdimage', }); @@ -129,6 +131,7 @@ Ext.define('PVE.qemu.CDEdit', { extend: 'Proxmox.window.Edit', width: 400, + warnVirtio: false, initComponent: function () { var me = this; @@ -143,6 +146,7 @@ Ext.define('PVE.qemu.CDEdit', { var ipanel = Ext.create('PVE.qemu.CDInputPanel', { confid: me.confid, nodename: nodename, + warnVirtio: me.warnVirtio, }); Ext.applyIf(me, { -- 2.47.3