Fixes #669- Related Workflow Links not working in BPMN editor

This commit is contained in:
alicia pritchett 2022-03-14 11:47:45 -04:00
parent ec0353e9f6
commit 0573acc8ed
1 changed files with 2 additions and 2 deletions

View File

@ -197,11 +197,11 @@ export class ModelerComponent implements AfterViewInit {
});
dialogRef.afterClosed().subscribe(dialogResult => {
if (dialogResult) {
this.router.navigate(['/modeler', this.workflowSpecId, b.id]);
this.router.navigate(['/modeler', this.workflowSpecId, 'file', b.name]);
}
});
} else {
this.router.navigate(['/modeler', this.workflowSpecId, b.id])
this.router.navigate(['/modeler', this.workflowSpecId, 'file', b.name])
}
}