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 b28d1f7082770becd17c505ddafaca26ae736b81..b51051bf039efd4ae229b04c7f850070ec54b43b 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 8784759db89ee4877088bafec5eb896489347c36..60c94122ee11ab0ceb1f93f4c895b5719e2792ec 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"}