1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00

🔀 Merge pull request from lucafaggianelli/fix-mutliselect

fix focus of ParameterInput with type multiOptions
This commit is contained in:
Jan 2019-10-15 21:32:15 +02:00 committed by GitHub
commit 8453574c01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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