mirror of
https://github.com/sartography/spiffworkflow-frontend.git
synced 2025-02-24 20:28:06 +00:00
also highlight waiting tasks w/ burnettk cullerton
This commit is contained in:
parent
f6da895394
commit
a056a9c134
@ -45,7 +45,7 @@ export default function ProcessInstanceShow() {
|
|||||||
if (task.state === 'COMPLETED') {
|
if (task.state === 'COMPLETED') {
|
||||||
(taskIds.completed as any).push(task.name);
|
(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);
|
(taskIds.active as any).push(task.name);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user