From 58cc0d9c141f8c100a4a1bc6c2de0b61263f840e Mon Sep 17 00:00:00 2001 From: jasquat <2487833+jasquat@users.noreply.github.com> Date: Tue, 25 Jul 2023 13:28:21 -0400 Subject: [PATCH] use the task_updated_at_in_seconds column on the pi show page like we do for the pi tables (#409) Co-authored-by: jasquat --- spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx b/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx index c19b659e4..10c7b10fd 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;