Skip to content
Snippets Groups Projects
Unverified Commit 792552d0 authored by Uladzimir Havenchyk's avatar Uladzimir Havenchyk Committed by GitHub
Browse files

Fix cursor in notebook editor (#39566)

parent 04452226
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ export const NotebookCellItemContainer = styled.div<{
props.inactive ? alpha(props.color, 0.25) : "transparent"};
cursor: ${props =>
!props.inactive && !props.readOnly && !props.disabled
(!props.inactive || props.onClick) && !props.readOnly && !props.disabled
? "pointer"
: "default"};
......
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