diff --git a/packages/editor-ui/src/components/ParameterInput.vue b/packages/editor-ui/src/components/ParameterInput.vue index c6b06e270e..7cf72b6dfc 100644 --- a/packages/editor-ui/src/components/ParameterInput.vue +++ b/packages/editor-ui/src/components/ParameterInput.vue @@ -473,7 +473,7 @@ export default mixins( // Set focus on field setTimeout(() => { - (this.$refs.inputField as HTMLInputElement).focus(); + (this.$refs.inputField.$el.querySelector('input') as HTMLInputElement).focus(); }); }, valueChanged (value: string | number | boolean | Date | null) {