From c605edebabd77abbca7a3ca63c8b11d473f3de07 Mon Sep 17 00:00:00 2001 From: Alex P Date: Thu, 22 Mar 2018 14:27:27 -0700 Subject: [PATCH] Fix linter error --- ui/src/shared/components/TableGraph.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ui/src/shared/components/TableGraph.js b/ui/src/shared/components/TableGraph.js index 8c8e970f10..52b7e2f9d7 100644 --- a/ui/src/shared/components/TableGraph.js +++ b/ui/src/shared/components/TableGraph.js @@ -330,14 +330,14 @@ class TableGraph extends Component { ref={gridContainer => (this.gridContainer = gridContainer)} onMouseOut={this.handleMouseOut} > - {rowCount > 0 && + {rowCount > 0 && ( - {({getColumnWidth, registerChild}) => + {({getColumnWidth, registerChild}) => ( } - } + /> + )} + + )} ) }