[pve-devel] [PATCH manager 2/2] ui: qemu: create wizard: provide context for OS ISO selection
Fiona Ebner
f.ebner at proxmox.com
Wed Jan 14 10:04:26 CET 2026
New users are often confused by the storage selection in the 'OS' tab
of the create wizard, the latest case being [0]. Add a heading clearly
and explicitly mentioning what the selection is for.
[0]: https://forum.proxmox.com/threads/179126/post-831215
Signed-off-by: Fiona Ebner <f.ebner at proxmox.com>
---
www/manager6/qemu/CreateWizard.js | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/www/manager6/qemu/CreateWizard.js b/www/manager6/qemu/CreateWizard.js
index 341324c8..451916ee 100644
--- a/www/manager6/qemu/CreateWizard.js
+++ b/www/manager6/qemu/CreateWizard.js
@@ -192,12 +192,21 @@ Ext.define('PVE.qemu.CreateWizard', {
title: gettext('OS'),
items: [
{
- xtype: 'pveQemuCDInputPanel',
- bind: {
- nodename: '{nodename}',
- },
- confid: 'ide2',
- insideWizard: true,
+ xtype: 'container',
+ items: [
+ {
+ xtype: 'displayfield',
+ value: gettext('Select operating system (installer) CD/DVD') + ':',
+ },
+ {
+ xtype: 'pveQemuCDInputPanel',
+ bind: {
+ nodename: '{nodename}',
+ },
+ confid: 'ide2',
+ insideWizard: true,
+ },
+ ],
},
{
xtype: 'pveQemuOSTypePanel',
--
2.47.3
More information about the pve-devel
mailing list