From b764700fefa46b4a556d42af3754f1ed10c27896 Mon Sep 17 00:00:00 2001 From: Peter Bastiani Date: Mon, 19 Aug 2019 13:15:20 +0200 Subject: [PATCH] AW-526 And now the proper fix. --- projects/common/src/lib/effects/app-common.effects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/common/src/lib/effects/app-common.effects.ts b/projects/common/src/lib/effects/app-common.effects.ts index b3291d7..394fc4f 100644 --- a/projects/common/src/lib/effects/app-common.effects.ts +++ b/projects/common/src/lib/effects/app-common.effects.ts @@ -96,7 +96,7 @@ export class AppCommonEffects { var a = action as appCommonActions.EditItem; var itemType = itemtypes[a.item.itemType]; var viewer = itemType.viewer; - this.router$.navigate(['/app', viewer, 'item', a.item.code]); + this.router$.navigate(['/viewer', viewer, 'item', a.item.code]) return []; } ));