Compare commits

..

2 Commits

View File

@ -103,7 +103,7 @@ const Cell = React.memo(({ cell, row, column, onClick, globalFilter, backgroundC
// Если isEditable false, добавляем дополнительные стили
const editableStyles = !isEditable ? {
border: '2px solid #d3d3d3',
color: '#525252',
color: backgroundColor?.toLowerCase() === '#933634' ? '#ffffff' : '#525252',
cursor: 'not-allowed',
} : {};