Skip to content
Snippets Groups Projects
Unverified Commit 80c00c1f authored by Paul Rosenzweig's avatar Paul Rosenzweig Committed by GitHub
Browse files

disable width on pivot table AutoSizer (#14630)

parent 20e84487
Branches
Tags
No related merge requests found
......@@ -439,7 +439,7 @@ export default class PivotTable extends Component {
<div className="flex flex-full">
{/* left header */}
<div style={{ width: leftHeaderWidth }}>
<AutoSizer>
<AutoSizer disableWidth>
{({ height }) => (
<Collection
ref={e => (this.leftHeaderRef = e)}
......@@ -459,7 +459,7 @@ export default class PivotTable extends Component {
</div>
{/* pivot table body */}
<div>
<AutoSizer>
<AutoSizer disableWidth>
{({ height }) => (
<Grid
width={width - leftHeaderWidth}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment