Skip to content

Commit 73b2594

Browse files
committed
Pass the theme prop to TableRow child components
Fixes: #1805
1 parent a841d2a commit 73b2594

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/table/TableRow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const factory = (Checkbox, TableCell) => {
3535
return (
3636
<tr {...other} className={_className}>
3737
{selectable && <TableCell className={theme.checkboxCell}>
38-
<Checkbox checked={selected} onChange={this.handleSelect} />
38+
<Checkbox theme={theme} checked={selected} onChange={this.handleSelect} />
3939
</TableCell>}
4040
{React.Children.map(children, (child, index) => {
4141
if (!child) return null;

0 commit comments

Comments
 (0)