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 <jasquat@users.noreply.github.com>
This commit is contained in:
jasquat 2023-07-25 13:28:21 -04:00 committed by GitHub
parent 84369a1b20
commit 58cc0d9c14
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ export default function ProcessInstanceShow({ variant }: OwnProps) {
return null; return null;
} }
let lastUpdatedTimeLabel = 'Updated At'; let lastUpdatedTimeLabel = 'Updated At';
let lastUpdatedTime = processInstance.updated_at_in_seconds; let lastUpdatedTime = processInstance.task_updated_at_in_seconds;
if (processInstance.end_in_seconds) { if (processInstance.end_in_seconds) {
lastUpdatedTimeLabel = 'Completed'; lastUpdatedTimeLabel = 'Completed';
lastUpdatedTime = processInstance.end_in_seconds; lastUpdatedTime = processInstance.end_in_seconds;