Fix input focus for schedule media
This commit is contained in:
parent
1b88a63f3f
commit
4f752ed76b
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user