Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
Add stepNode__clickable class to Node
Browse files Browse the repository at this point in the history
  • Loading branch information
unsortedhashsets committed Apr 3, 2023
1 parent abc340e commit 07887fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/VisualizationStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const VisualizationStep = ({ data }: NodeProps<IVizStepNodeData>) => {
<>
{!data.isPlaceholder ? (
<div
className={`stepNode stepNode--${layoutCssClass}` + getSelectedClass() + getHoverClass()}
className={`stepNode stepNode--${layoutCssClass} stepNode__clickable` + getSelectedClass() + getHoverClass()}
onDrop={onDropReplace}
onMouseEnter={() => {
if (data.branchInfo || supportsBranching) {
Expand Down

0 comments on commit 07887fb

Please sign in to comment.