Fix for radio cells not being marked as edited

This commit is contained in:
navaneeth 2021-08-20 17:49:46 +05:30
parent 501b8a8cf5
commit 11a9d3d62b

View file

@ -604,7 +604,8 @@ export function Table({
if (componentState.changeSet) {
if (componentState.changeSet[cell.row.index]) {
if (_.get(componentState.changeSet[cell.row.index], cell.column.id, undefined)) {
if (_.get(componentState.changeSet[cell.row.index], cell.column.Header, undefined) !== undefined) {
console.log('componentState.changeSet', componentState.changeSet);
cellProps.style.backgroundColor = '#ffffde';
}