Skip to content

Commit

Permalink
fix sds bone age centile tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
eatyourpeas committed May 15, 2022
1 parent acaa1aa commit b3f0c9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rcpch/digital-growth-charts-react-component-library",
"version": "6.1.0",
"version": "6.1.1",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/functions/tooltips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export function tooltipText(
concatenatedText+="\nSDS: "+bone_age_sds.toString();
}
if (bone_age_centile && !isNaN(bone_age_centile)) {
concatenatedText+="\nCentile: "+bone_age_sds.toString();
concatenatedText+="\nCentile: "+bone_age_centile.toString();
}
if (bone_age_type && bone_age_type.length > 0) {
if (bone_age_type==="greulich-pyle"){
Expand Down

0 comments on commit b3f0c9d

Please sign in to comment.