[pve-devel] [PATCH manager] ui: ceph: unmask container after we finished the ceph install

Dominik Csapak d.csapak at proxmox.com
Wed Mar 22 15:28:15 CET 2023


otherwise the container stays masked and we cannot interact with it

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
 www/manager6/Utils.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js
index b25445374..94e75d5c4 100644
--- a/www/manager6/Utils.js
+++ b/www/manager6/Utils.js
@@ -1700,6 +1700,9 @@ Ext.define('PVE.Utils', {
 		    });
 		    win.getViewModel().set('isInstalled', isInstalled);
 		    container.add(win);
+		    win.on('close', () => {
+			container.el.unmask();
+		    });
 		    win.show();
 		    callback(win);
 		}
-- 
2.30.2






More information about the pve-devel mailing list