From 7c8cd22ad8ce85a8a651c327a17b387ef06fdcf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Fri, 4 Jul 2025 18:08:03 +0200 Subject: [PATCH] FIX: stop propagation on copy in the editor Fixes #392 --- webapp/IronCalc/src/components/Editor/Editor.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/IronCalc/src/components/Editor/Editor.tsx b/webapp/IronCalc/src/components/Editor/Editor.tsx index 7be2eb3..a72390f 100644 --- a/webapp/IronCalc/src/components/Editor/Editor.tsx +++ b/webapp/IronCalc/src/components/Editor/Editor.tsx @@ -249,6 +249,7 @@ const Editor = (options: EditorOptions) => { } }} onPaste={(event) => event.stopPropagation()} + onCopy={(event) => event.stopPropagation()} /> );