AW-6495 Exception editor croppingscheme: do not use 'item' in route

This commit is contained in:
Peter Bastiani 2024-11-15 14:06:11 +01:00
parent ed1e1478b2
commit d4a230f96d

View File

@ -139,10 +139,17 @@ export class AppCommonEffects {
const itemType = itemtypes[a.item.itemType];
var editor = itemType && itemType.editor ? itemType.editor : editor;
}
this.router$.navigate(['/editor',editor,'item', a.item.code])
return [];
}
)));
if (editor == 'croppingscheme') {
// Exeception: no 'item' in route
this.router$.navigate(['/editor', editor, a.item.code])
}
else {
this.router$.navigate(['/editor', editor, 'item', a.item.code])
}
return [];
}
)
));
viewItem$ = createEffect(() => this.actions$.pipe(
ofType(appCommonActions.VIEWITEM),