diff --git a/ue/scripts/ue.js b/ue/scripts/ue.js index da1e5efc..283f22a1 100644 --- a/ue/scripts/ue.js +++ b/ue/scripts/ue.js @@ -142,6 +142,18 @@ const setupUEEventHandlers = () => { } } }); + + document.body.addEventListener('aue:content-add', () => { + window.location.reload(); + }); + + document.body.addEventListener('aue:content-move', () => { + window.location.reload(); + }); + + document.body.addEventListener('aue:content-remove', () => { + window.location.reload(); + }); }; export default () => {