highlight STARTED tasks like READY and WAITING tasks in the webui

This commit is contained in:
jasquat 2024-04-05 10:42:23 -04:00
parent 7ae81f47cf
commit d45d98e558
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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';