mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
🔀 Merge pull request #81 from lucafaggianelli/fix-mutliselect
fix focus of ParameterInput with type multiOptions
This commit is contained in:
commit
8453574c01
|
@ -473,7 +473,7 @@ export default mixins(
|
||||||
|
|
||||||
// Set focus on field
|
// Set focus on field
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
(this.$refs.inputField as HTMLInputElement).focus();
|
(this.$refs.inputField.$el.querySelector('input') as HTMLInputElement).focus();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
valueChanged (value: string | number | boolean | Date | null) {
|
valueChanged (value: string | number | boolean | Date | null) {
|
||||||
|
|
Loading…
Reference in a new issue