From ecec6daf80e9b7910393e371223b3824855f180b Mon Sep 17 00:00:00 2001 From: kozbial Date: Tue, 20 Jul 2021 16:47:41 -0700 Subject: [PATCH] clang-format core/keyboard_nav/tab_navigate_cursor.js --- core/keyboard_nav/tab_navigate_cursor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } }