Skip to content

Commit

Permalink
fix(valuesets): remove capitalization on code
Browse files Browse the repository at this point in the history
  • Loading branch information
pl-buiquang committed Jan 25, 2025
1 parent 64cf431 commit 1fd606e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/aphp/serviceValueSets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const mapCodesToFhirItems = (
codes.map((code) => ({
id: code.code,
label: codeInLabel
? `${capitalizeFirstLetter(code.code)} - ${capitalizeFirstLetter(code.display)}`
? `${code.code} - ${capitalizeFirstLetter(code.display)}`
: capitalizeFirstLetter(code.display),
system: codeSystem
})),
Expand Down

0 comments on commit 1fd606e

Please sign in to comment.