diff --git a/app/client/src/components/designSystems/appsmith/TableComponent/TableUtilities.tsx b/app/client/src/components/designSystems/appsmith/TableComponent/TableUtilities.tsx index 7ed540b182..a919fedf07 100644 --- a/app/client/src/components/designSystems/appsmith/TableComponent/TableUtilities.tsx +++ b/app/client/src/components/designSystems/appsmith/TableComponent/TableUtilities.tsx @@ -329,9 +329,12 @@ export const renderEmptyRows = (
{multiRowSelection && renderCheckBoxCell(false)} {row.cells.map((cell: any, cellIndex: number) => { - return ( -
- ); + const cellProps = cell.getCellProps(); + if (columns[0]?.columnProperties?.cellBackground) { + cellProps.style.background = + columns[0].columnProperties.cellBackground; + } + return
; })}
);