From a056a9c134f9718451ed00ea5b49c00b8902b06f Mon Sep 17 00:00:00 2001 From: jasquat Date: Thu, 18 Aug 2022 17:17:09 -0400 Subject: [PATCH] also highlight waiting tasks w/ burnettk cullerton --- src/routes/ProcessInstanceShow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/ProcessInstanceShow.tsx b/src/routes/ProcessInstanceShow.tsx index df54a5f..3745348 100644 --- a/src/routes/ProcessInstanceShow.tsx +++ b/src/routes/ProcessInstanceShow.tsx @@ -45,7 +45,7 @@ export default function ProcessInstanceShow() { if (task.state === 'COMPLETED') { (taskIds.completed as any).push(task.name); } - if (task.state === 'READY') { + if (task.state === 'READY' || task.state === 'WAITING') { (taskIds.active as any).push(task.name); } });