mirror of
https://github.com/gosticks/react-table.git
synced 2026-08-12 04:50:20 +00:00
Fixed row references
This commit is contained in:
+2
-2
@@ -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>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user