Fixed row value prop

This commit is contained in:
Tanner Linsley
2016-10-27 08:59:30 -06:00
parent a8f360a408
commit f018bac58f
2 changed files with 6 additions and 6 deletions

8
example/dist/app.js vendored

File diff suppressed because one or more lines are too long

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>
)