Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
lmd59 committed Aug 2, 2024
1 parent 67811d6 commit 738c4f0
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions src/services/bulkstatus.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,16 @@ async function kickoffImport(request, reply) {
};
});
// check if bulk status is byPatient, if so, add inputdetails
if(bulkStatus.byPatient){
importManifest.parameter.push(
{
name : 'inputDetails',
part : [
{
name : 'subjectType',
valueCode : 'Patient'
}
]
}
)
if (bulkStatus.byPatient) {
importManifest.parameter.push({
name: 'inputDetails',
part: [
{
name: 'subjectType',
valueCode: 'Patient'
}
]
});

Check warning on line 57 in src/services/bulkstatus.service.js

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🧾 Statement is not covered

Warning! Not covered statement
}

Check warning on line 58 in src/services/bulkstatus.service.js

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🧾 Statement is not covered

Warning! Not covered statement

Check warning on line 58 in src/services/bulkstatus.service.js

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🌿 Branch is not covered

Warning! Not covered branch

// TODO: add provenance?
Expand Down

0 comments on commit 738c4f0

Please sign in to comment.