diff --git a/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx b/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx index c19b659e..10c7b10f 100644 --- a/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx +++ b/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx @@ -323,7 +323,7 @@ export default function ProcessInstanceShow({ variant }: OwnProps) { return null; } let lastUpdatedTimeLabel = 'Updated At'; - let lastUpdatedTime = processInstance.updated_at_in_seconds; + let lastUpdatedTime = processInstance.task_updated_at_in_seconds; if (processInstance.end_in_seconds) { lastUpdatedTimeLabel = 'Completed'; lastUpdatedTime = processInstance.end_in_seconds;