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