From c5922a2273724fb393d8184aa80b0b3041ffce1a Mon Sep 17 00:00:00 2001 From: Sergey Vinogradov Date: Wed, 16 Oct 2024 09:29:28 +0400 Subject: [PATCH] remove no longer necessary line --- packages/grid/src/vaadin-grid-keyboard-navigation-mixin.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/grid/src/vaadin-grid-keyboard-navigation-mixin.js b/packages/grid/src/vaadin-grid-keyboard-navigation-mixin.js index b0ce3c19f0..a7fed7203b 100644 --- a/packages/grid/src/vaadin-grid-keyboard-navigation-mixin.js +++ b/packages/grid/src/vaadin-grid-keyboard-navigation-mixin.js @@ -513,10 +513,6 @@ export const KeyboardNavigationMixin = (superClass) => // listener invocation gets updated _focusedItemIndex value. this._focusedItemIndex = dstRowIndex; - // This has to be set after scrolling, otherwise it can be removed by - // `_preventScrollerRotatingCellFocus(row, index)` during scrolling. - this.toggleAttribute('navigating', true); - return { dstRow: [...activeRowGroup.children].find((el) => !el.hidden && el.index === dstRowIndex), dstIsRowDetails,