Skip to content

Commit

Permalink
add space after comma
Browse files Browse the repository at this point in the history
  • Loading branch information
kajambiya committed Nov 9, 2023
1 parent 36f8ed9 commit eb74a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/esm-commons-lib/src/utils/encounter-list-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function getMultipleObsFromEncounter(encounter, obsConcepts: Array<string
}
})

return observations.length? observations.join(','): '--'
return observations.length? observations.join(', '): '--'
}

export function getObsFromEncounter(encounter, obsConcept, isDate?: Boolean, isTrueFalseConcept?: Boolean) {
Expand Down

0 comments on commit eb74a69

Please sign in to comment.