Skip to content

Commit

Permalink
Update api/src/service/domain/workflow/workflowitem_closed.ts
Browse files Browse the repository at this point in the history
Co-Authored-By: kevinbader <kevinbader@users.noreply.github.com>
  • Loading branch information
mathiashoeld and kevinbader authored Apr 10, 2019
1 parent f272d7b commit bc3a97c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/service/domain/workflow/workflowitem_closed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function mutate(workflowitem: Workflowitem.Workflowitem, event: Event): R
// isn't set already:
if (
workflowitem.billingDate === undefined &&
(workflowitem.amountType === "allocated" || workflowitem.amountType === "disbursed")
workflowitem.amountType !== "N/A"
) {
workflowitem.billingDate = event.time;
}
Expand Down

0 comments on commit bc3a97c

Please sign in to comment.