From 58abf88b463ebfe086706771b508b8c992270cf2 Mon Sep 17 00:00:00 2001 From: Lars Gebhardt-Kusche Date: Tue, 10 Feb 2026 02:04:17 +0100 Subject: [PATCH] spinner --- config/current.ver | 2 +- public/assets/js/ui-editor.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/config/current.ver b/config/current.ver index fe13137..15caaaa 100755 --- a/config/current.ver +++ b/config/current.ver @@ -1 +1 @@ -1.2.95 +1.2.96 diff --git a/public/assets/js/ui-editor.js b/public/assets/js/ui-editor.js index 27a3841..e61ad86 100755 --- a/public/assets/js/ui-editor.js +++ b/public/assets/js/ui-editor.js @@ -854,6 +854,9 @@ export function initEditor() {   }   function showVeil(){     const el = ensureVeil(); +    if (!el.parentNode) { +      (document.body || document.documentElement).appendChild(el); +    }     el.style.display = 'flex';     el.style.opacity = '1';     el.style.visibility = 'visible';