diff --git a/components/cycle-day/symptom-box.js b/components/cycle-day/symptom-box.js index 4453b8c..f9fcd0c 100644 --- a/components/cycle-day/symptom-box.js +++ b/components/cycle-day/symptom-box.js @@ -64,7 +64,7 @@ const SymptomBox = ({ {t(symptom)} {symptomDataToDisplay && ( - + {symptomDataToDisplay} )} diff --git a/components/cycle-day/symptom-edit-view.js b/components/cycle-day/symptom-edit-view.js index e5c4958..0498c1b 100644 --- a/components/cycle-day/symptom-edit-view.js +++ b/components/cycle-day/symptom-edit-view.js @@ -109,7 +109,7 @@ const SymptomEditView = ({ date, onClose, symptom, symptomData }) => { const noteText = symptom === 'note' ? data.value : data.note const inputProps = { multiline: true, - numberOfLines: 4, + numberOfLines: 3, scrollEnabled: true, style: styles.input, textAlignVertical: 'top', @@ -176,10 +176,12 @@ const SymptomEditView = ({ date, onClose, symptom, symptomData }) => { /> )} + {/* this code below applies to the note field in temperature and the note tracking category */} {shouldShow(symptomConfig.note) && ( {symtomPage[symptom].note}