Skip to content

Commit bd17eb2

Browse files
authored
Merge pull request #371 from NUS-Project-SaBai/2024trip/241213
Change vitals "Scoliosis" to "Spine"
2 parents e84c154 + 5a107b4 commit bd17eb2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

components/records/ChildrenVitalsFields.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export function ChildrenVitalsFields({
1111
}) {
1212
const age = patientAge(patient.date_of_birth).year;
1313

14+
//Note: The UI display for scoliosis instances are labelled spine
1415
const StatFields = [
1516
{
1617
component: 'dropdown',
@@ -41,7 +42,7 @@ export function ChildrenVitalsFields({
4142
{
4243
component: 'input',
4344
name: 'scoliosis',
44-
label: 'Scoliosis',
45+
label: 'Spine',
4546
value: formDetails.scoliosis,
4647
type: 'text',
4748
age: ALL_CHILD_AGES,

components/records/VitalsTable.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export function VitalsTable({ vitals, patient, visit }) {
4949
{ label: 'Others', value: vitals.others },
5050
];
5151

52+
//Note: The UI display for scoliosis instances are labelled spine
5253
const childrenVitalFields = [
5354
{
5455
label: 'Gross Motor',
@@ -61,7 +62,7 @@ export function VitalsTable({ vitals, patient, visit }) {
6162
ageToTest: ALL_CHILD_AGES,
6263
},
6364
{
64-
label: 'Scoliosis',
65+
label: 'Spine',
6566
value: vitals.scoliosis,
6667
ageToTest: ALL_CHILD_AGES,
6768
},

0 commit comments

Comments
 (0)