test bota #77

Closed
Raykov-MS wants to merge 373 commits from test into main
Showing only changes of commit 361eeb24bb - Show all commits

View File

@ -104,6 +104,15 @@ export const getTableColumns = ({
const processColumns = (columns, EditCell, Cell) => {
columns.forEach((col) => {
if (col.header.length > 15) {
col.size = 250;
}
if(col.header.length >= 20){
col.size = 350;
}
if(col.header.length >= 30){
col.size = 400;
}
col.Cell = ({ cell, table, column, row }) => (
<Cell
row={row}