mirror of
https://github.com/gosticks/react-table.git
synced 2025-10-16 11:55:36 +00:00
Fixed row references
This commit is contained in:
parent
e8146b5d14
commit
cb3cc05a59
@ -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"
|
||||
},
|
||||
|
||||
@ -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>
|
||||
)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user