Breakpoint color

This commit is contained in:
Siddharth Ganesan
2025-08-29 10:25:06 -07:00
parent 694538e1ee
commit 61534b05dd
2 changed files with 2 additions and 2 deletions

View File

@@ -1477,7 +1477,7 @@ export function DebugPanel() {
className={cn(
'h-4 w-4',
breakpointId === focusedBlockId
? 'fill-red-600/20 text-red-600'
? 'fill-orange-600/20 text-orange-600'
: 'text-muted-foreground/50'
)}
/>

View File

@@ -693,7 +693,7 @@ export function WorkflowBlock({ id, data }: NodeProps<WorkflowBlockProps>) {
{/* Show breakpoint indicator */}
{isDebugModeEnabled && breakpointId === id && (
<div className='-bottom-6 -translate-x-1/2 absolute left-1/2 z-10 transform rounded-b-md bg-red-500 px-2 py-0.5 text-white text-xs'>
<div className='-bottom-6 -translate-x-1/2 absolute left-1/2 z-10 transform rounded-b-md bg-orange-500 px-2 py-0.5 text-white text-xs'>
Breakpoint
</div>
)}