From 5fe8f2642aec1119497a03d60e4a9ef5669b5fb8 Mon Sep 17 00:00:00 2001 From: ralf Date: Thu, 19 Jan 2023 15:22:47 -0600 Subject: [PATCH] fix problem with Safari 16.2 of NOT displaying dialog contents eg. of timer dialog --- api/js/etemplate/Et2Dialog/Et2Dialog.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/api/js/etemplate/Et2Dialog/Et2Dialog.ts b/api/js/etemplate/Et2Dialog/Et2Dialog.ts index 649ce6c641..d12c763e3b 100644 --- a/api/js/etemplate/Et2Dialog/Et2Dialog.ts +++ b/api/js/etemplate/Et2Dialog/Et2Dialog.ts @@ -309,7 +309,11 @@ export class Et2Dialog extends Et2Widget(SlotMixin(SlDialog)) ...super.slots, '': () => { - return this._contentTemplate(); + // to fix problem with Safari 16.2 of NOT displaying the content, we have to use the following, + // instead of just return this._contentTemplate() + let div = document.createElement("div"); + render(this._contentTemplate(), div); + return div.children[0]; } } }