Fix linter error
parent
f7eb3e9681
commit
c605edebab
|
@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue