From 164742caef890ce3f272e48c152fe44856b0b461 Mon Sep 17 00:00:00 2001
From: Anton Kulyk <kuliks.anton@gmail.com>
Date: Fri, 13 Oct 2023 19:05:49 +0100
Subject: [PATCH] Fix notebook cell cursor (#34648)

---
 .../components/notebook/NotebookCell/NotebookCell.styled.tsx    | 2 +-
 .../components/notebook/NotebookCell/NotebookCell.tsx           | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/frontend/src/metabase/query_builder/components/notebook/NotebookCell/NotebookCell.styled.tsx b/frontend/src/metabase/query_builder/components/notebook/NotebookCell/NotebookCell.styled.tsx
index b28d1f70827..b51051bf039 100644
--- a/frontend/src/metabase/query_builder/components/notebook/NotebookCell/NotebookCell.styled.tsx
+++ b/frontend/src/metabase/query_builder/components/notebook/NotebookCell/NotebookCell.styled.tsx
@@ -33,7 +33,7 @@ export const NotebookCellItemContainer = styled.div<{
     props.inactive ? alpha(props.color, 0.25) : "transparent"};
 
   cursor: ${props =>
-    !props.inactive && !props.readOnly && !props.disabled && !!props.onClick
+    !props.inactive && !props.readOnly && !props.disabled
       ? "pointer"
       : "default"};
 
diff --git a/frontend/src/metabase/query_builder/components/notebook/NotebookCell/NotebookCell.tsx b/frontend/src/metabase/query_builder/components/notebook/NotebookCell/NotebookCell.tsx
index 8784759db89..60c94122ee1 100644
--- a/frontend/src/metabase/query_builder/components/notebook/NotebookCell/NotebookCell.tsx
+++ b/frontend/src/metabase/query_builder/components/notebook/NotebookCell/NotebookCell.tsx
@@ -53,6 +53,7 @@ export const NotebookCellItem = forwardRef<
     <NotebookCellItemContainer
       inactive={inactive}
       readOnly={readOnly}
+      disabled={disabled}
       color={color}
       {...restProps}
       data-testid={restProps["data-testid"] ?? "notebook-cell-item"}
-- 
GitLab