removed link from the process model in the pi list table w/ burnettk

This commit is contained in:
jasquat 2024-03-05 15:22:30 -05:00
parent 31b84c60e3
commit c77d5a81c4
No known key found for this signature in database
1 changed files with 2 additions and 9 deletions

View File

@ -231,17 +231,10 @@ export default function ProcessInstanceListTable({
};
const getProcessModelSpanTag = (
processInstance: ProcessInstance,
_processInstance: ProcessInstance,
identifier: string
) => {
const modifiedModelId = modifyProcessIdentifierForPathParam(
processInstance.process_model_identifier
);
return (
<span>
<Link to={`/process-models/${modifiedModelId}`}>{identifier}</Link>
</span>
);
return <span>{identifier}</span>;
};
const getWaitingForTableCellComponent = (processInstanceTask: any) => {