]> git.proxmox.com Git - pve-manager.git/commitdiff
ui: ceph: unmask container after we finished the ceph install
authorDominik Csapak <d.csapak@proxmox.com>
Wed, 22 Mar 2023 14:28:15 +0000 (15:28 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 22 Mar 2023 14:29:44 +0000 (15:29 +0100)
otherwise the container stays masked and we cannot interact with it

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
www/manager6/Utils.js

index b25445374ab554b9fb6c5159cc2209bf4dec354a..94e75d5c4139d70201dbbeab038cf21205025040 100644 (file)
@@ -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);
                }