diff --git a/src/plugins/crash_reporter/index.js b/src/plugins/crash_reporter/index.js index a11e4ec1a..3f40d2c05 100644 --- a/src/plugins/crash_reporter/index.js +++ b/src/plugins/crash_reporter/index.js @@ -104,7 +104,7 @@ const Line = styled(View)({ }); const Container = styled(FlexColumn)({ - overflow: 'hidden', + overflow: 'scroll', flexShrink: 0, }); @@ -115,7 +115,9 @@ const Value = styled(Text)({ maxHeight: 200, flexGrow: 1, textOverflow: 'ellipsis', + marginLeft: 8, marginRight: 8, + overflow: 'hidden', }); const FlexGrowColumn = styled(FlexColumn)({ @@ -458,24 +460,22 @@ class HeaderRow extends Component { render() { const {title, value} = this.props; return ( - + - - - {title} - { - clipboard.writeText(value); - }, + + {title} + { + clipboard.writeText(value); }, - ]}> - {value} - - - + }, + ]}> + {value} + +