And another potential issue
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

2022.01
Willem Dantuma 2020-07-22 08:23:53 +02:00
parent 0da8d3d46d
commit 31d01c75c5
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ export class AppCommonEffects {
var editor = "property";
if(a.item.itemType) {
var itemType = itemtypes[a.item.itemType];
var editor = itemType.editor ? itemType.editor : editor;
var editor = itemType && itemType.editor ? itemType.editor : editor;
}
this.router$.navigate(['/editor',editor,'item', a.item.code])
return [];