diff --git a/src/hooks/useInteractive.ts b/src/hooks/useInteractive.ts index 4ef3e5401a..c819d39538 100644 --- a/src/hooks/useInteractive.ts +++ b/src/hooks/useInteractive.ts @@ -34,6 +34,10 @@ export const useInteractive = ( event.preventDefault() event.stopPropagation() dispatch.components.select(component.id) + }, + onDoubleClick: (event: MouseEvent) => { + event.preventDefault() + event.stopPropagation() dispatch.app.toggleInputText() }, }