Fix linter error

pull/10616/head
Alex P 2018-03-22 14:27:27 -07:00
parent f7eb3e9681
commit c605edebab
1 changed files with 6 additions and 4 deletions

View File

@ -330,14 +330,14 @@ class TableGraph extends Component {
ref={gridContainer => (this.gridContainer = gridContainer)} ref={gridContainer => (this.gridContainer = gridContainer)}
onMouseOut={this.handleMouseOut} onMouseOut={this.handleMouseOut}
> >
{rowCount > 0 && {rowCount > 0 && (
<ColumnSizer <ColumnSizer
columnCount={columnCount} columnCount={columnCount}
columnMaxWidth={COLUMN_MAX_WIDTH} columnMaxWidth={COLUMN_MAX_WIDTH}
columnMinWidth={COLUMN_MIN_WIDTH} columnMinWidth={COLUMN_MIN_WIDTH}
width={tableWidth} width={tableWidth}
> >
{({getColumnWidth, registerChild}) => {({getColumnWidth, registerChild}) => (
<MultiGrid <MultiGrid
ref={registerChild} ref={registerChild}
columnCount={columnCount} columnCount={columnCount}
@ -361,8 +361,10 @@ class TableGraph extends Component {
colors={colors} colors={colors}
tableOptions={tableOptions} tableOptions={tableOptions}
classNameBottomRightGrid="table-graph--scroll-window" classNameBottomRightGrid="table-graph--scroll-window"
/>} />
</ColumnSizer>} )}
</ColumnSizer>
)}
</div> </div>
) )
} }