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:
parent
84369a1b20
commit
58cc0d9c14
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue