Fixed row references

This commit is contained in:
Tanner Linsley 2016-10-26 19:37:10 -06:00
parent e8146b5d14
commit cb3cc05a59
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@
"nib": "^1.1.2",
"npm-run-all": "^3.1.1",
"onchange": "^3.0.2",
"standard": "8.0.0",
"standard": "^8.0.0",
"stylus": "^0.54.5",
"uglifyify": "3.0.3"
},

View File

@ -398,11 +398,11 @@ export default React.createClass({
>
{typeof Cell === 'function' ? (
<Cell
value={row[column.id]}
value={rowInfo[column.id]}
{...rowInfo}
/>
) : typeof Cell !== 'undefined' ? Cell
: row[column.id]}
: rowInfo[column.id]}
</div>
</TdComponent>
)