Compare commits

...
3 Commits
Author SHA1 Message Date
Tanner Linsley efeabe3536 2.2.4 2016-10-27 08:59:34 -06:00
Tanner Linsley f018bac58f Fixed row value prop 2016-10-27 08:59:30 -06:00
Tanner Linsley a8f360a408 Remove Build Files 2016-10-26 19:39:18 -06:00
6 changed files with 7 additions and 724 deletions
+4 -4
View File
File diff suppressed because one or more lines are too long
-709
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "react-table",
"version": "2.2.3",
"version": "2.2.4",
"description": "A fast, lightweight, opinionated table and datagrid built on React",
"license": "MIT",
"homepage": "https://github.com/tannerlinsley/react-table#readme",
-1
View File
File diff suppressed because one or more lines are too long
-7
View File
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -398,11 +398,11 @@ export default React.createClass({
>
{typeof Cell === 'function' ? (
<Cell
value={rowInfo[column.id]}
value={rowInfo.row[column.id]}
{...rowInfo}
/>
) : typeof Cell !== 'undefined' ? Cell
: rowInfo[column.id]}
: rowInfo.row[column.id]}
</div>
</TdComponent>
)