mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
fix: Fix parameter inputField ref not yet mounted (no-changelog) (#5864)
* fix: fix parameter inputField ref not yet mounted * fix: move optional chaining * fix: fix focus condition
This commit is contained in:
parent
0a59002ef8
commit
97b35daf0a
|
@ -961,7 +961,7 @@ export default mixins(
|
|||
// Set focus on field
|
||||
setTimeout(() => {
|
||||
// @ts-ignore
|
||||
if (this.$refs.inputField && this.$refs.inputField.$el) {
|
||||
if (this.$refs.inputField?.focus && this.$refs.inputField?.$el) {
|
||||
// @ts-ignore
|
||||
this.$refs.inputField.focus();
|
||||
this.isFocused = true;
|
||||
|
|
Loading…
Reference in a new issue