mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix error message on textarea field clicks
This commit is contained in:
@@ -533,7 +533,7 @@ export default mixins(
|
||||
// @ts-ignore
|
||||
if (this.$refs.inputField.$el) {
|
||||
// @ts-ignore
|
||||
(this.$refs.inputField.$el.querySelector('input') as HTMLInputElement).focus();
|
||||
(this.$refs.inputField.$el.querySelector(this.getStringInputType === 'textarea' ? 'textarea' : 'input') as HTMLInputElement).focus();
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user