From bd743159bb0f32912b873b6f7e47afad8be34dc4 Mon Sep 17 00:00:00 2001 From: Sydney Rhude Date: Thu, 21 Mar 2024 18:24:04 -0400 Subject: [PATCH] remove extra check from primaryLinkElement click on Row --- polaris-react/src/components/IndexTable/components/Row/Row.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polaris-react/src/components/IndexTable/components/Row/Row.tsx b/polaris-react/src/components/IndexTable/components/Row/Row.tsx index 6a14e5bad39..f9d4b2d5882 100644 --- a/polaris-react/src/components/IndexTable/components/Row/Row.tsx +++ b/polaris-react/src/components/IndexTable/components/Row/Row.tsx @@ -142,7 +142,7 @@ export const Row = memo(function Row({ return; } - if (primaryLinkElement.current && !selectMode && selectable) { + if (primaryLinkElement.current && !selectMode) { isNavigating.current = true; const {ctrlKey, metaKey} = event.nativeEvent;