Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(ui): render block handles underneath current block content
  • Loading branch information
waleedlatif1 committed Mar 16, 2026
commit fd7312abf1d76759aca57fb796793cb254367a1f
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ export const WorkflowBlock = memo(function WorkflowBlock({
* Reusable styles and positioning for Handle components.
*/
const getHandleClasses = (position: 'left' | 'right' | 'top' | 'bottom', isError = false) => {
const baseClasses = '!z-[10] !cursor-crosshair !border-none !transition-[colors] !duration-150'
const baseClasses = '!z-[-1] !cursor-crosshair !border-none !transition-[colors] !duration-150'
Comment thread
waleedlatif1 marked this conversation as resolved.
Outdated
const colorClasses = isError ? '!bg-[var(--text-error)]' : '!bg-[var(--workflow-edge)]'

const positionClasses = {
Expand Down
Loading