From 14fdbdf793a76ad1f1f6c30b055e214b0df4ce51 Mon Sep 17 00:00:00 2001 From: Johnpaul Chiwetelu <49923152+Myestery@users.noreply.github.com> Date: Fri, 19 Dec 2025 05:48:12 +0100 Subject: [PATCH] fix: prevent custom context menu when editing text (#7633) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Stop contextmenu event propagation in EditableText component - Allows browser's native context menu (copy/paste) when renaming nodes ## Test plan - [ ] Double-click a node title to enter edit mode - [ ] Select text and right-click - [ ] Verify browser's native context menu appears (not the node context menu) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7633-fix-prevent-custom-context-menu-when-editing-text-2ce6d73d365081e38461d080abe12b32) by [Unito](https://www.unito.io) --- src/components/common/EditableText.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/common/EditableText.vue b/src/components/common/EditableText.vue index 7d8afe7f0..322d332a4 100644 --- a/src/components/common/EditableText.vue +++ b/src/components/common/EditableText.vue @@ -21,6 +21,7 @@ @keyup.enter.capture.stop="blurInputElement" @keyup.escape.stop="cancelEditing" @click.stop + @contextmenu.stop @pointerdown.stop.capture @pointermove.stop.capture />