Linter fixes

pull/10616/head
Alex P 2018-09-27 12:41:56 -07:00
parent e951ce74ba
commit 31533c7093
1 changed files with 6 additions and 3 deletions

View File

@ -64,8 +64,8 @@ class IndexList extends Component<Props> {
private listRow = (
rowColumns: IndexListRowColumn[],
rowIndex: number
disabled: boolean,
rowIndex: number,
disabled: boolean
): JSX.Element => {
return (
<Row
@ -78,7 +78,10 @@ class IndexList extends Component<Props> {
)
}
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)