bug fix und Debug Workflow #83

Merged
Lars merged 10 commits from develop into main 2026-04-13 18:15:07 +02:00
Showing only changes of commit f97d15288d - Show all commits

View File

@ -220,13 +220,13 @@ export function WorkflowResultViewer({ result, onClose }) {
}} }}
> >
<div> <div>
{node.node_type === 'start' && '🚀'} {(node.debug_node_type || node.node_type) === 'start' && '🚀'}
{node.node_type === 'analysis' && '🤖'} {(node.debug_node_type || node.node_type) === 'analysis' && '🤖'}
{node.node_type === 'logic' && '⚡'} {(node.debug_node_type || node.node_type) === 'logic' && '⚡'}
{node.node_type === 'join' && '🔀'} {(node.debug_node_type || node.node_type) === 'join' && '🔀'}
{node.node_type === 'end' && '🏁'} {(node.debug_node_type || node.node_type) === 'end' && '🏁'}
{' '} {' '}
{node.node_label || node.node_id} {node.debug_prompt_slug || node.node_label || ((node.debug_node_type || node.node_type) ? `${node.debug_node_type || node.node_type}-${node.node_id.substring(0, 8)}` : node.node_id)}
{node.status === 'skipped' && ( {node.status === 'skipped' && (
<span style={{ color: 'var(--text3)', marginLeft: '8px' }}> <span style={{ color: 'var(--text3)', marginLeft: '8px' }}>
(skipped) (skipped)