From 0468c879997889690a1c2019a738d6128b2deff4 Mon Sep 17 00:00:00 2001 From: "@soyjavi" Date: Thu, 5 Nov 2015 07:04:56 +0700 Subject: [PATCH] Fix name for identify components --- components/table/components/head.jsx | 2 +- components/table/components/row.jsx | 2 +- components/table/index.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/table/components/head.jsx b/components/table/components/head.jsx index eccbbe7c..211a9eb0 100644 --- a/components/table/components/head.jsx +++ b/components/table/components/head.jsx @@ -31,7 +31,7 @@ class Head extends React.Component { render () { return ( - + { this.renderCellSelectable() } { diff --git a/components/table/components/row.jsx b/components/table/components/row.jsx index 2b4fd428..e945084e 100644 --- a/components/table/components/row.jsx +++ b/components/table/components/row.jsx @@ -82,7 +82,7 @@ class Row extends React.Component { if (this.props.selected) className += ` ${style.selected}`; return ( - + { this.renderCellSelectable() } { Object.keys(this.props.model).map((key) => { diff --git a/components/table/index.jsx b/components/table/index.jsx index 51d5f32a..98af1f86 100644 --- a/components/table/index.jsx +++ b/components/table/index.jsx @@ -107,7 +107,7 @@ class Table extends React.Component { render () { const className = `${this.props.className} ${style.root}`; return ( - +
{ this.renderHead() } { this.renderBody() }