From 297c595d1dbdf5a3171a15c4d7928fda76ee5af6 Mon Sep 17 00:00:00 2001 From: Howard Chung Date: Fri, 17 Feb 2017 05:02:05 +0000 Subject: [PATCH] fix lint --- src/components/Matches/index.jsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/components/Matches/index.jsx b/src/components/Matches/index.jsx index ef1d5a92ff..41e72429cd 100644 --- a/src/components/Matches/index.jsx +++ b/src/components/Matches/index.jsx @@ -12,8 +12,8 @@ import { IconRadiant, IconDire, IconTrophy } from 'components/Icons'; import matchStyles from 'components/Match/Match.css'; import Match from 'components/Match'; import TabBar from 'components/TabBar'; -import styles from './Matches.css'; import heroes from 'dotaconstants/build/heroes.json'; +import styles from './Matches.css'; const matchesColumns = [{ displayName: strings.th_match_id, @@ -62,15 +62,17 @@ const publicMatchesColumns = [ displayFn: transformations.duration, }, { - displayName: {strings.general_radiant}, + displayName: {strings.general_radiant}, field: 'radiant_team', - displayFn: (row, col, field) => (field || '').split(',').map(heroId => ), + displayFn: (row, col, field) => (field || '').split(',').map(heroId => + ), }, - { - displayName: {strings.general_dire}, + { + displayName: {strings.general_dire}, field: 'dire_team', - displayFn: (row, col, field) => (field || '').split(',').map(heroId => ), - } + displayFn: (row, col, field) => (field || '').split(',').map(heroId => + ), + }, ]; const matchTabs = [{