From baa93f5e2c98aa240d198cf78293f78d7cc7cfe7 Mon Sep 17 00:00:00 2001 From: burnettk Date: Thu, 19 Oct 2023 08:10:33 -0400 Subject: [PATCH] do not show timestamp links for cancelled events, since you cannot reset to them --- .../src/components/ProcessInstanceLogList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceLogList.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceLogList.tsx index 87785a9b..ac2d4a03 100644 --- a/spiffworkflow-frontend/src/components/ProcessInstanceLogList.tsx +++ b/spiffworkflow-frontend/src/components/ProcessInstanceLogList.tsx @@ -308,7 +308,7 @@ export default function ProcessInstanceLogList({ let timestampComponent = ( {convertSecondsToFormattedDateTime(logEntry.timestamp)} ); - if (logEntry.spiff_task_guid) { + if (logEntry.spiff_task_guid && logEntry.event_type !== 'task_cancelled') { timestampComponent = (