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