diff --git a/chronograf/ui/src/shared/components/index_views/IndexList.tsx b/chronograf/ui/src/shared/components/index_views/IndexList.tsx index da03914d6c..8f7cac9b8c 100644 --- a/chronograf/ui/src/shared/components/index_views/IndexList.tsx +++ b/chronograf/ui/src/shared/components/index_views/IndexList.tsx @@ -64,8 +64,8 @@ class IndexList extends Component { private listRow = ( rowColumns: IndexListRowColumn[], - rowIndex: number - disabled: boolean, + rowIndex: number, + disabled: boolean ): JSX.Element => { return ( { ) } - private getRowColumnClassName = (columnKey: string, disabled: boolean): string => { + private getRowColumnClassName = ( + columnKey: string, + disabled: boolean + ): string => { const {columns} = this.props const {showOnHover, align} = _.find(columns, col => col.key === columnKey)