From 5f7f0095cbe50de27376ced89b7c1c2807cb5c20 Mon Sep 17 00:00:00 2001 From: Aaron Lauterer Date: Mon, 2 May 2022 16:05:05 +0200 Subject: [PATCH] fix #3597: ui: ceph setup: avoid autofill of monitor network By not auto filling the Ceph public network we can avoid accidental clicks on 'Next' which will cause the first Mon to be created with a potentially wrong network. While that is fixable, it is tedious and can be easily avoided by making the user always select the network to use. Signed-off-by: Aaron Lauterer Tested-by: Stefan Hrdlicka [ T: adapted commit subject to be more specific and match our common style ] Signed-off-by: Thomas Lamprecht --- www/manager6/ceph/CephInstallWizard.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/manager6/ceph/CephInstallWizard.js b/www/manager6/ceph/CephInstallWizard.js index 59458b0d..bebfc319 100644 --- a/www/manager6/ceph/CephInstallWizard.js +++ b/www/manager6/ceph/CephInstallWizard.js @@ -372,6 +372,7 @@ Ext.define('PVE.ceph.CephInstallWizard', { name: 'network', value: '', fieldLabel: 'Public Network IP/CIDR', + autoSelect: false, bind: { allowBlank: '{configuration}', },