From 813d5cb1db3c50153faaa83c6c1ac640e037ff3f Mon Sep 17 00:00:00 2001 From: voss Date: Mon, 29 Jun 2026 15:12:32 +0200 Subject: [PATCH 1/2] fix: let the DA page re-render on significant content changes (add, move, remove of components) --- ue/scripts/ue.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ue/scripts/ue.js b/ue/scripts/ue.js index da1e5efc..aaa297f4 100644 --- a/ue/scripts/ue.js +++ b/ue/scripts/ue.js @@ -142,6 +142,18 @@ const setupUEEventHandlers = () => { } } }); + + document.body.addEventListener('aue:content-add', () => { + window.reload(); + }); + + document.body.addEventListener('aue:content-move', () => { + window.reload(); + }); + + document.body.addEventListener('aue:content-remove', () => { + window.reload(); + }); }; export default () => { From 9f65713d65a12a140dd17b09264d927d3a08b071 Mon Sep 17 00:00:00 2001 From: voss Date: Mon, 29 Jun 2026 15:18:17 +0200 Subject: [PATCH 2/2] fix: let the DA page re-render on significant content changes (add, move, remove of components) --- ue/scripts/ue.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ue/scripts/ue.js b/ue/scripts/ue.js index aaa297f4..283f22a1 100644 --- a/ue/scripts/ue.js +++ b/ue/scripts/ue.js @@ -144,15 +144,15 @@ const setupUEEventHandlers = () => { }); document.body.addEventListener('aue:content-add', () => { - window.reload(); + window.location.reload(); }); document.body.addEventListener('aue:content-move', () => { - window.reload(); + window.location.reload(); }); document.body.addEventListener('aue:content-remove', () => { - window.reload(); + window.location.reload(); }); };