From 5e212156e1a442cae62979913d513378417ed55a Mon Sep 17 00:00:00 2001 From: Alexander Brown Date: Wed, 29 Oct 2025 16:56:58 -0700 Subject: [PATCH] Fix: Allow click and drag selection when editing text (e.g. Node name) (#6385) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Previously, the node would be dragged when trying to select text. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6385-Fix-Allow-click-and-drag-selection-when-editing-text-e-g-Node-name-29b6d73d36508197b73fc8f965bb34ef) by [Unito](https://www.unito.io) --- src/components/common/EditableText.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/common/EditableText.vue b/src/components/common/EditableText.vue index 625df22a0c..9ed0a92b44 100644 --- a/src/components/common/EditableText.vue +++ b/src/components/common/EditableText.vue @@ -21,6 +21,8 @@ @keyup.enter="blurInputElement" @keyup.escape="cancelEditing" @click.stop + @pointerdown.stop.capture + @pointermove.stop.capture />