diff --git a/spiffworkflow-frontend/src/components/ReactDiagramEditor.tsx b/spiffworkflow-frontend/src/components/ReactDiagramEditor.tsx index 25d4aca7..9ee03207 100644 --- a/spiffworkflow-frontend/src/components/ReactDiagramEditor.tsx +++ b/spiffworkflow-frontend/src/components/ReactDiagramEditor.tsx @@ -515,7 +515,7 @@ export default function ReactDiagramEditor({ let className = ''; if (task.state === 'COMPLETED') { className = 'completed-task-highlight'; - } else if (task.state === 'READY' || task.state === 'WAITING') { + } else if (['READY', 'WAITING', 'STARTED'].includes(task.state)) { className = 'active-task-highlight'; } else if (task.state === 'CANCELLED') { className = 'cancelled-task-highlight';