fix parentheses error

pull/3030/head
Iris Scholten 2018-03-22 09:35:23 -07:00
parent be8ff5903c
commit 8794d6a636
1 changed files with 3 additions and 5 deletions

View File

@ -308,7 +308,7 @@ class TableGraph extends Component {
columnMinWidth={COLUMN_MIN_WIDTH}
width={tableWidth}
>
{({getColumnWidth, registerChild}) => (
{({getColumnWidth, registerChild}) =>
<MultiGrid
ref={registerChild}
columnCount={columnCount}
@ -332,10 +332,8 @@ class TableGraph extends Component {
colors={colors}
tableOptions={tableOptions}
classNameBottomRightGrid="table-graph--scroll-window"
/>
)}
</ColumnSizer>
)}
/>}
</ColumnSizer>})
</div>
)
}