Skip to content
This repository was archived by the owner on Jun 28, 2026. It is now read-only.
2 changes: 2 additions & 0 deletions components/lib/datatable/BodyCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,8 @@ export const RadioCheckCell = React.memo(
return <Cell {...props} />;
},
(prevProps, nextProps) => {
if (nextProps.cellMemo === false) return false;

const keysToCompare = ['isRowSelected', 'field', 'allowCellSelection', 'isCellSelected', 'editMode', 'index', 'tabIndex', 'editing', 'expanded', 'editingMeta', 'rowData'];

return ObjectUtils.selectiveCompare(prevProps, nextProps, keysToCompare);
Expand Down
Loading