mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
Fix for radio cells not being marked as edited
This commit is contained in:
parent
501b8a8cf5
commit
11a9d3d62b
1 changed files with 2 additions and 1 deletions
|
|
@ -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';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue