From 7d5c0f796f5bed9a035630c358c4f61f0992e013 Mon Sep 17 00:00:00 2001 From: Iakov Ogryzkov Date: Fri, 27 Feb 2026 16:20:21 +0100 Subject: [PATCH] Fix: Text copying while editing a cell Signed-off-by: Iakov Ogryzkov --- resources/js/makegrid.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/makegrid.ts b/resources/js/makegrid.ts index 11ffbb070f..45b3fc5ee2 100644 --- a/resources/js/makegrid.ts +++ b/resources/js/makegrid.ts @@ -2666,7 +2666,7 @@ const makeGrid = function (t, enableResize = undefined, enableReorder = undefine // Copy handler $(document).on('copy', function (e) { - if (!document.body.contains(g.t)) { + if (!document.body.contains(g.t) || g.isCellEditActive) { return; }