Skip to content

Commit

Permalink
Reduced maxHeight of autocomplete suggestions to 250.
Browse files Browse the repository at this point in the history
With 300 it was not looking good on Android.
  • Loading branch information
jainkuniya authored and borisyankov committed Jun 3, 2017
1 parent 62ddf77 commit 8ed4847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/Popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default class Popup extends Component {
return (
<View
style={styles.container}
maxHeight={300}
maxHeight={250}
>
{this.props.children}
</View>
Expand Down

0 comments on commit 8ed4847

Please sign in to comment.