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 3998527c74
commit 508ea856a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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