Skip to content
Snippets Groups Projects
Commit 5cdf73ce authored by emelko's avatar emelko
Browse files

Gets rid of line break in note "Enter" instead of "En-ter"

parent 7c1cd18b
No related branches found
No related tags found
No related merge requests found
......@@ -112,19 +112,17 @@ export default class Pain extends Component {
}}
/>
</View>
<View style={styles.symptomViewRowInline}>
{ this.state.other &&
<TextInput
autoFocus={this.state.focusTextArea}
multiline={true}
placeholder="Enter"
value={this.state.note}
onChangeText={(val) => {
this.setState({note: val})
}}
/>
}
</View>
{ this.state.other &&
<TextInput
autoFocus={this.state.focusTextArea}
multiline={true}
placeholder="Enter"
value={this.state.note}
onChangeText={(val) => {
this.setState({note: val})
}}
/>
}
</View>
</ScrollView>
<ActionButtonFooter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment