From 04cf1419eaaa440e94927687bc54154f0dcd6aa5 Mon Sep 17 00:00:00 2001 From: Alexandre Vryghem Date: Wed, 7 Feb 2024 13:43:50 +0100 Subject: [PATCH] 111679: Restored missing inAndOutputNames on ClaimedTaskActionsLoaderComponent --- .../switcher/claimed-task-actions-loader.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/shared/mydspace-actions/claimed-task/switcher/claimed-task-actions-loader.component.ts b/src/app/shared/mydspace-actions/claimed-task/switcher/claimed-task-actions-loader.component.ts index c0dc1cad02..63a1591f97 100644 --- a/src/app/shared/mydspace-actions/claimed-task/switcher/claimed-task-actions-loader.component.ts +++ b/src/app/shared/mydspace-actions/claimed-task/switcher/claimed-task-actions-loader.component.ts @@ -68,8 +68,10 @@ export class ClaimedTaskActionsLoaderComponent implements OnInit, OnChanges { * The list of input and output names for the dynamic component */ protected inAndOutputNames: (keyof ClaimedTaskActionsAbstractComponent & keyof this)[] = [ + 'item', 'object', 'option', + 'workflowitem', 'processCompleted', ];