Merge branch '440-cycle-overview-page-limit-note-size-to-display' into 'rebased-redesign'

Limit line length on text of symptom box

See merge request bloodyhealth/drip!314
This commit is contained in:
bl00dymarie
2020-12-13 12:20:37 +00:00
+1 -1
View File
@@ -86,7 +86,7 @@ class SymptomBox extends Component {
{symptomTitles[symptom].toLowerCase()}
</AppText>
{symptomDataToDisplay &&
<AppText style={textStyle}>
<AppText style={textStyle} numberOfLines={4}>
{symptomDataToDisplay}
</AppText>
}