From d756268dbe6e518444df871fcca429ec5ed61200 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Thu, 19 Jan 2023 14:05:21 +0100 Subject: [PATCH] Fix edit acl dialog fails on reload --- admin/js/app.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/admin/js/app.ts b/admin/js/app.ts index 0e675701ec..71c7ef655e 100644 --- a/admin/js/app.ts +++ b/admin/js/app.ts @@ -889,6 +889,9 @@ class AdminApp extends EgwApp if(this.acl_dialog != null) { content = this.acl_dialog.get_value() || {}; + // returning tabs as content seems to screw up recreating the dialog + // @todo: maybe this should be investigated further in et2Tabs widget + delete(content.tabs); // Destroy the dialog this.acl_dialog.destroy();