diff --git a/src/components/popups/newMedia.ts b/src/components/popups/newMedia.ts index 8cc778f0..22bc9574 100644 --- a/src/components/popups/newMedia.ts +++ b/src/components/popups/newMedia.ts @@ -126,6 +126,10 @@ export default class PopupNewMedia extends PopupElement { private onKeyDown = (e: KeyboardEvent) => { const target = e.target as HTMLElement; + if(target.tagName === 'INPUT' || target.hasAttribute('contenteditable')) { + return; + } + if(target !== this.input) { this.input.focus(); placeCaretAtEnd(this.input);