Мне нужно отобразить некоторые строки с границами, а не все строки. Я могу установить высоту, цвет фона или некоторые другие свойства стиля строк через свойство rowClassName
, но я не могу ничего определить о границах. Ничего не работает с бордюром.
export default makeStyles(theme => ({
lastBatched: {
borderBottom: '#F3D0CF',
},
firstBatced: {
height: '100px',
borderWidth: '20px',
borderBottom: '#F3D0CF',
borderColor: '#5d3ebc',
backgroundColor: 'red',
},
}));
const getRowClassName = (record, index) => {
const classes = useStyles();
if (record.batchInfos.isFirstIndex) {
return `${FIRST_ROW_CLASS_NAME} ${classes.firstBatced}`;
}
if (record.batchInfos.isLastIndex) {
return `${FIRST_ROW_CLASS_NAME} ${classes.lastBatched}`;
}
return null;
}
return (
<AntTable
rowClassName={getRowClassName}
data={activeOrders}
columns={columns}
loading={isPending && showLoadingSpinner}
pagination={pagination}
onPaginationChange={handlePaginationChange}
/>
);