diff --git a/src/common/components/InlineTextarea.tsx b/src/common/components/InlineTextarea.tsx index d18b8e89d..e0ae95fc7 100644 --- a/src/common/components/InlineTextarea.tsx +++ b/src/common/components/InlineTextarea.tsx @@ -47,6 +47,7 @@ export function InlineTextarea(props: { } } else if (e.key === 'Escape') { e.preventDefault(); + e.stopPropagation(); props.onCancel?.(); } };