diff --git a/frontend-html/src/modules/Editors/DropdownEditor/DropdownEditorInput.tsx b/frontend-html/src/modules/Editors/DropdownEditor/DropdownEditorInput.tsx index 06f52fb07e..81e72ded1c 100644 --- a/frontend-html/src/modules/Editors/DropdownEditor/DropdownEditorInput.tsx +++ b/frontend-html/src/modules/Editors/DropdownEditor/DropdownEditorInput.tsx @@ -70,7 +70,7 @@ export function DropdownEditorInput(props: { placeholder={data.isResolving ? "Loading..." : ""} onChange={beh.handleInputChange} onKeyDown={beh.handleInputKeyDown} - onFocus={!beh.isReadOnly ? beh.handleInputFocus : undefined} + onFocus={beh.handleInputFocus} onBlur={!beh.isReadOnly ? beh.handleInputBlur : undefined} onDoubleClick={beh.onDoubleClick} onClick={beh.onClick}