updated ProcessReference interface in frontend
This commit is contained in:
parent
ca3563931b
commit
e95c093fc2
|
@ -132,11 +132,9 @@ export interface ProcessInstanceTask {
|
|||
}
|
||||
|
||||
export interface ProcessReference {
|
||||
name: string; // The process or decision Display name.
|
||||
identifier: string; // The unique id of the process
|
||||
display_name: string;
|
||||
process_group_id: string;
|
||||
process_model_id: string;
|
||||
relative_location: string;
|
||||
type: string; // either "decision" or "process"
|
||||
file_name: string;
|
||||
properties: any;
|
||||
|
|
|
@ -958,7 +958,7 @@ export default function ProcessModelEditDiagram() {
|
|||
'/editor/process-models/:process_model_path/files/:file_name',
|
||||
{
|
||||
process_model_path: modifyProcessIdentifierForPathParam(
|
||||
processReference.process_model_id
|
||||
processReference.relative_location
|
||||
),
|
||||
file_name: processReference.file_name,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue