also highlight waiting tasks w/ burnettk cullerton

This commit is contained in:
jasquat 2022-08-18 17:17:09 -04:00
parent f6da895394
commit a056a9c134

View File

@ -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);
}
});