WIP Mail REST API: fix closing dialog closes popup to because dialog was already removed when response was received

This commit is contained in:
ralf
2023-07-13 15:36:55 +02:00
parent e9b054b025
commit 3c732b9caf
2 changed files with 3 additions and 3 deletions

View File

@@ -1004,7 +1004,7 @@ export class Et2Dialog extends Et2Widget(SlotMixin(SlDialog))
get _contentNode() : HTMLElement
{
return this.querySelector('.dialog_content') ?? this.querySelector("*");
return this.querySelector('.dialog_content');
}
_setupMoveResize()