do not show timestamp links for cancelled events, since you cannot reset to them
This commit is contained in:
parent
92e51baca3
commit
baa93f5e2c
|
@ -308,7 +308,7 @@ export default function ProcessInstanceLogList({
|
|||
let timestampComponent = (
|
||||
<td>{convertSecondsToFormattedDateTime(logEntry.timestamp)}</td>
|
||||
);
|
||||
if (logEntry.spiff_task_guid) {
|
||||
if (logEntry.spiff_task_guid && logEntry.event_type !== 'task_cancelled') {
|
||||
timestampComponent = (
|
||||
<td>
|
||||
<Link
|
||||
|
|
Loading…
Reference in New Issue