diff --git a/packages/lexical/src/LexicalEvents.ts b/packages/lexical/src/LexicalEvents.ts index d6707f81195..8b474ec208b 100644 --- a/packages/lexical/src/LexicalEvents.ts +++ b/packages/lexical/src/LexicalEvents.ts @@ -590,7 +590,7 @@ function onBeforeInput(event: InputEvent, editor: LexicalEditor): void { function onInput(event: InputEvent, editor: LexicalEditor): void { // We don't want the onInput to bubble, in the case of nested editors. - //event.stopPropagation(); + event.stopPropagation(); updateEditor(editor, () => { const selection = $getSelection(); const data = event.data;