Skip to content
Snippets Groups Projects
Unverified Commit 164742ca authored by Anton Kulyk's avatar Anton Kulyk Committed by GitHub
Browse files

Fix notebook cell cursor (#34648)

parent 84e8079f
No related branches found
No related tags found
No related merge requests found
......@@ -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"};
......
......@@ -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"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment