Limit line length on text of symptom box

This commit is contained in:
emelko
2020-12-05 12:47:28 +01:00
parent 77908afd60
commit 295e751217
+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>
}