mirror of
https://github.com/gosticks/react-table.git
synced 2026-08-13 13:30:17 +00:00
Fixed row value prop
This commit is contained in:
Vendored
+4
-4
File diff suppressed because one or more lines are too long
+2
-2
@@ -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