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

This commit is contained in:
emelko
2018-08-30 21:39:53 +02:00
parent 7c1cd18b1c
commit 5cdf73cea6
+11 -13
View File
@@ -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