fix focus of ParameterInput with type multiOptions

fix #78, fix #2
This commit is contained in:
Luca Faggianelli 2019-10-15 16:44:09 +02:00
parent 92669bb77a
commit 168d2214a8

View file

@ -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) {