Dirty workaround
// component
<TableRowColumn className='prevent-cell-click'>
<div className='prevent-cell-click-wrapper' onClick={e => e.stopPropagation()}>
// your content
</div>
</TableRowColumn>
// styles
.prevent-cell-click {
position: relative
}
.prevent-cell-click-wrapper:before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
Most helpful comment
Having this same issue.