Fixed #7430 - For DataTable

prod
tugcekucukoglu 2025-03-12 12:14:33 +03:00
parent 1876de5f22
commit a0bd7c8851
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ const classes = {
root: ({ props }) => [
'p-datatable p-component',
{
'p-datatable-hoverable': props.rowHover || props.selectionMode,
'p-datatable-hoverable': props.rowHover || (props.rowHover && props.selectionMode !== null),
'p-datatable-resizable': props.resizableColumns,
'p-datatable-resizable-fit': props.resizableColumns && props.columnResizeMode === 'fit',
'p-datatable-scrollable': props.scrollable,