Skip to content

Commit

Permalink
fix for document template uploads.
Browse files Browse the repository at this point in the history
  • Loading branch information
devinleighsmith committed Dec 25, 2024
1 parent 672714e commit 008d75c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/backend/api/Services/FormDocumentService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public async Task<DocumentUploadRelationshipResponse> UploadFormDocumentTemplate

if (uploadResult.DocumentExternalResponse.Status == ExternalResponseStatus.Success)
{
currentFormType.DocumentId = uploadRequest.DocumentId;
currentFormType.DocumentId = uploadResult.Document.Id;
var updatedFormType = _formTypeRepository.SetFormTypeDocument(currentFormType);
_formTypeRepository.CommitTransaction();

Expand Down

0 comments on commit 008d75c

Please sign in to comment.