mirror of
https://github.com/gosticks/react-table.git
synced 2026-06-28 17:10:01 +00:00
Fixed row value prop
This commit is contained in:
8
example/dist/app.js
vendored
8
example/dist/app.js
vendored
File diff suppressed because one or more lines are too long
@@ -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>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user