We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63a888 commit 296ad33Copy full SHA for 296ad33
core/keyboard_nav/ast_node.ts
@@ -461,14 +461,16 @@ export class ASTNode {
461
const inputs = block.inputList;
462
for (let i = 0; i < inputs.length; i++) {
463
const input = inputs[i];
464
+ if (!input.isVisible()) continue;
465
+
466
const fieldRow = input.fieldRow;
467
for (let j = 0; j < fieldRow.length; j++) {
468
const field = fieldRow[j];
469
if (field.isClickable() || ASTNode.NAVIGATE_ALL_FIELDS) {
470
return ASTNode.createFieldNode(field);
471
}
472
- if (input.connection && input.isVisible()) {
473
+ if (input.connection) {
474
return ASTNode.createInputNode(input);
475
476
0 commit comments