[pve-devel] [PATCH manager 2/5] ui: ceph: rename wizzard variable to wizard
Maximiliano Sandoval
m.sandoval at proxmox.com
Wed Jul 17 14:16:47 CEST 2024
Signed-off-by: Maximiliano Sandoval <m.sandoval at proxmox.com>
---
www/manager6/window/CephInstall.js | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/www/manager6/window/CephInstall.js b/www/manager6/window/CephInstall.js
index 432c6719..32605129 100644
--- a/www/manager6/window/CephInstall.js
+++ b/www/manager6/window/CephInstall.js
@@ -66,12 +66,12 @@ Ext.define('PVE.ceph.Install', {
},
handler: function() {
let view = this.up('pveCephInstallWindow');
- let wizzard = Ext.create('PVE.ceph.CephInstallWizard', {
+ let wizard = Ext.create('PVE.ceph.CephInstallWizard', {
nodename: view.nodename,
});
- wizzard.getViewModel().set('isInstalled', this.getViewModel().get('isInstalled'));
- wizzard.show();
- view.mon(wizzard, 'beforeClose', function() {
+ wizard.getViewModel().set('isInstalled', this.getViewModel().get('isInstalled'));
+ wizard.show();
+ view.mon(wizard, 'beforeClose', function() {
view.fireEvent("cephInstallWindowClosed");
view.close();
});
--
2.39.2
More information about the pve-devel
mailing list