diff --git a/uui-components/src/table/DataTableCellContainer.tsx b/uui-components/src/table/DataTableCellContainer.tsx index 98a51dd34b..14ebca306c 100644 --- a/uui-components/src/table/DataTableCellContainer.tsx +++ b/uui-components/src/table/DataTableCellContainer.tsx @@ -38,6 +38,7 @@ export const DataTableCellContainer = React.forwardRef(props: React.PropsWithChildren & DataTableRowMods) => { return ( ); diff --git a/uui/components/tables/DataTableRow.tsx b/uui/components/tables/DataTableRow.tsx index 66d2eb25ac..70c97a793c 100644 --- a/uui/components/tables/DataTableRow.tsx +++ b/uui/components/tables/DataTableRow.tsx @@ -15,7 +15,7 @@ import css from './DataTableRow.module.scss'; // As we need our mods to style the cell properly, we extract them from DataTableCellProps.rowProps, which is a hack, but it's reliable enough. export const renderCell = (props: DataTableCellProps) => { const mods = props.rowProps as DataTableRowMods & DataTableRowProps; - return ; + return ; }; export const renderDropMarkers = (props: DndActorRenderParams) => ;