From 19f703e2d1c3020c158f2956bfb5f3c942ec213d Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Wed, 22 Mar 2023 15:28:15 +0100 Subject: [PATCH] ui: ceph: unmask container after we finished the ceph install otherwise the container stays masked and we cannot interact with it Signed-off-by: Dominik Csapak --- www/manager6/Utils.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js index b2544537..94e75d5c 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); }