Skip to content

Commit

Permalink
fix: data preview only showing 3 rows
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkiMeganMoore committed Oct 20, 2022
1 parent 4d2970d commit 5edff1f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file modified example/package/react-autoql-0.0.0-semantically-released.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/DataExplorer/DataPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default class DataExplorer extends React.Component {

return (
<div className='data-preview'>
<CustomScrollbars autoHeight autoHeightMin={0} autoHeightMax={maxHeight}>
<CustomScrollbars autoHeight autoHide={false} autoHeightMin={0} autoHeightMax={maxHeight}>
{!!this.state.error ? (
<div className='data-preview-error-message'>
<div>{this.state.error.message}</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/DataExplorer/DataPreview.scss
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
min-width: 100%;
table-layout: fixed;
border-collapse: collapse;
height: 175px;
}
thead {
th {
Expand Down

0 comments on commit 5edff1f

Please sign in to comment.