We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ed6dfc commit 775a9c0Copy full SHA for 775a9c0
src/issue/screens/edit-issue-comment.screen.js
@@ -18,7 +18,6 @@ import { editIssueBody, editIssueComment } from '../issue.action';
18
19
const styles = StyleSheet.create({
20
textInput: {
21
- maxHeight: Dimensions.get('window').height / 2,
22
paddingVertical: 10,
23
fontSize: normalize(12),
24
marginHorizontal: 15,
@@ -116,7 +115,13 @@ class EditIssueComment extends Component {
116
115
issueCommentHeight: event.nativeEvent.contentSize.height,
117
})}
118
placeholderTextColor={colors.grey}
119
- style={styles.textInput}
+ style={[
+ styles.textInput,
120
+ {
121
+ height: this.state.issueCommentHeight,
122
+ maxHeight: Dimensions.get('window').height / 2,
123
+ },
124
+ ]}
125
value={issueComment}
126
/>
127
</SectionList>
0 commit comments