From 5e1bc6d705b8104fc148ef73dd05ac80594eab63 Mon Sep 17 00:00:00 2001 From: Peter Bastiani Date: Fri, 15 Nov 2024 14:06:33 +0100 Subject: [PATCH] AW-6495 Exception editor croppingscheme: do not use 'item' in route --- projects/common/src/fm/effects/app-common.effects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/common/src/fm/effects/app-common.effects.ts b/projects/common/src/fm/effects/app-common.effects.ts index 4b19019..87e42ff 100644 --- a/projects/common/src/fm/effects/app-common.effects.ts +++ b/projects/common/src/fm/effects/app-common.effects.ts @@ -134,7 +134,7 @@ export class AppCommonEffects { withLatestFrom(this.store$.select(appCommonReducers.selectGetItemTypes)), switchMap(([action, itemtypes]) => { const a = action as appCommonActions.EditItem; - var editor = "property"; + var editor = "property"; if(a.item.itemType) { const itemType = itemtypes[a.item.itemType]; var editor = itemType && itemType.editor ? itemType.editor : editor;