diff --git a/core/keyboard_nav/tab_navigate_cursor.js b/core/keyboard_nav/tab_navigate_cursor.js index 37f90fe37..3b82267a1 100644 --- a/core/keyboard_nav/tab_navigate_cursor.js +++ b/core/keyboard_nav/tab_navigate_cursor.js @@ -41,8 +41,8 @@ TabNavigateCursor.prototype.validNode_ = function(node) { const type = node && node.getType(); if (node) { const location = /** @type {Field} */ (node.getLocation()); - if (type == ASTNode.types.FIELD && - location && location.isTabNavigable() && location.isClickable()) { + if (type == ASTNode.types.FIELD && location && location.isTabNavigable() && + location.isClickable()) { isValid = true; } }