Skip to content

Commit

Permalink
Adding changes to make the edit of a task work correctly with 0 day e…
Browse files Browse the repository at this point in the history
…ntries.
  • Loading branch information
renemadsen committed Nov 15, 2023
1 parent b6bd578 commit aef6f53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export class TaskWizardPageComponent implements OnInit, OnDestroy, AfterViewInit
eformId: data.model.eformId,
folderId: data.model.folderId,
propertyId: data.model.propertyId,
repeatEvery: data.model.repeatEvery,
repeatEvery: data.model.repeatEvery === 0 ? 1 : data.model.repeatEvery,
repeatType: data.model.repeatType,
sites: data.model.assignedTo,
startDate: data.model.startDate,
Expand Down

0 comments on commit aef6f53

Please sign in to comment.