From b787858a22a31530346b7cbdae56d13d9a60bb13 Mon Sep 17 00:00:00 2001 From: Michael Coune <michael.coune@hyland.com> Date: Fri, 25 Apr 2025 08:30:23 +0200 Subject: [PATCH] Adds input for 'Open next task' checkbox Adds an input to the task screen component to determine whether the "Open next task" checkbox is checked by default. Also, adds an output that emits an event when the state of the "Open next task" checkbox changes. --- .../components/user-task-cloud/user-task-cloud.component.html | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/process-services-cloud/src/lib/task/task-form/components/user-task-cloud/user-task-cloud.component.html b/lib/process-services-cloud/src/lib/task/task-form/components/user-task-cloud/user-task-cloud.component.html index 6df4f081cb..4ea54bd1f9 100644 --- a/lib/process-services-cloud/src/lib/task/task-form/components/user-task-cloud/user-task-cloud.component.html +++ b/lib/process-services-cloud/src/lib/task/task-form/components/user-task-cloud/user-task-cloud.component.html @@ -38,6 +38,7 @@ [showCancelButton]="showCancelButton" [taskName]="taskDetails.name" [taskId]="taskId" + [isNextTaskCheckboxChecked]="isNextTaskCheckboxChecked" (cancelTask)="onCancelClick()" (claimTask)="onClaimTask()"