FIX: stop propagation on copy in the editor

Fixes #392
This commit is contained in:
Nicolás Hatcher
2025-07-04 18:08:03 +02:00
committed by Nicolás Hatcher Andrés
parent 84c3cf01ce
commit 7c8cd22ad8

View File

@@ -249,6 +249,7 @@ const Editor = (options: EditorOptions) => {
}
}}
onPaste={(event) => event.stopPropagation()}
onCopy={(event) => event.stopPropagation()}
/>
</div>
);