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.
This commit is contained in:
Michael Coune 2025-04-25 08:30:23 +02:00 committed by apuschkin
parent 1c4129aaba
commit b787858a22
No known key found for this signature in database
GPG Key ID: DCFFF2B2EDEF9F73

View File

@ -38,6 +38,7 @@
[showCancelButton]="showCancelButton"
[taskName]="taskDetails.name"
[taskId]="taskId"
[isNextTaskCheckboxChecked]="isNextTaskCheckboxChecked"
(cancelTask)="onCancelClick()"
(claimTask)="onClaimTask()"