mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-12 10:34:17 +00:00
handle no primary filename before attempting navigation
This commit is contained in:
parent
1d8bbbdf35
commit
5cfc1861d4
@ -201,6 +201,12 @@ export default function ProcessInstanceShow({ variant }: OwnProps) {
|
|||||||
if (ability.can('GET', targetUris.processInstanceActionPath)) {
|
if (ability.can('GET', targetUris.processInstanceActionPath)) {
|
||||||
const processResult = (result: ProcessModel) => {
|
const processResult = (result: ProcessModel) => {
|
||||||
const primaryFileName = result.primary_file_name;
|
const primaryFileName = result.primary_file_name;
|
||||||
|
if (!primaryFileName) {
|
||||||
|
// this should be very unlikely, since we are in the context of an instance,
|
||||||
|
// but it's techically possible for the file to have been subsequently deleted or something.
|
||||||
|
console.error('Primary file name not found for the process model.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
navigate(
|
navigate(
|
||||||
`/editor/process-models/${modifiedProcessModelId}/files/${primaryFileName}`
|
`/editor/process-models/${modifiedProcessModelId}/files/${primaryFileName}`
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user