We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 302b928 + 0478690 commit 7464f6eCopy full SHA for 7464f6e
src/page/home/report/ReportHistoryView.js
@@ -147,9 +147,7 @@ class ReportHistoryView extends React.Component {
147
}}
148
onContentSizeChange={this.scrollToListBottom}
149
bounces={false}
150
- contentContainerStyle={{
151
- paddingVertical: 16
152
- }}
+ contentContainerStyle={[styles.chatContentScrollView]}
153
>
154
{_.chain(this.props.reportHistory).sortBy('sequenceNumber').map((item, index) => (
155
<ReportHistoryItem
src/style/StyleSheet.js
@@ -448,6 +448,12 @@ const styles = {
448
justifyContent: 'flex-end',
449
},
450
451
+ chatContentScrollView: {
452
+ flexGrow: 1,
453
+ justifyContent: 'flex-end',
454
+ paddingVertical: 16,
455
+ },
456
+
457
chatContentEmpty: {
458
paddingTop: 16,
459
paddingBottom: 16,
0 commit comments