From 67dd247aafb3fcdb810a18b193dfdfae1ee6b62f Mon Sep 17 00:00:00 2001 From: Dirk Date: Fri, 11 Oct 2024 10:36:13 +0200 Subject: [PATCH] fix: add aue:content-copy event to be handled when applying changes --- scripts/editor-support.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/editor-support.js b/scripts/editor-support.js index 0fcfda4c08..2fe55f7a50 100644 --- a/scripts/editor-support.js +++ b/scripts/editor-support.js @@ -95,6 +95,7 @@ function attachEventListners(main) { 'aue:content-add', 'aue:content-move', 'aue:content-remove', + 'aue:content-copy', ].forEach((eventType) => main?.addEventListener(eventType, async (event) => { event.stopPropagation(); const applied = await applyChanges(event);