Skip to content

Commit 7a3eb62

Browse files
authored
fix: Don't visit invisible inputs with the cursor. (#8892)
1 parent 547fed4 commit 7a3eb62

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/keyboard_nav/ast_node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ export class ASTNode {
468468
return ASTNode.createFieldNode(field);
469469
}
470470
}
471-
if (input.connection) {
471+
if (input.connection && input.isVisible()) {
472472
return ASTNode.createInputNode(input);
473473
}
474474
}

0 commit comments

Comments
 (0)