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