We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc5a29c commit 1c1f4bcCopy full SHA for 1c1f4bc
1 file changed
src/lib/Components/CellRenderer.tsx
@@ -134,7 +134,7 @@ export const CellRenderer: React.FC<CellRendererProps> = ({
134
})}
135
>
136
{cellTemplate.render(cellToRender, isMobile ? isInEditMode : false, onCellChanged)}
137
- {location.row.idx === 0 || (cell.type === 'header' && state.props?.enableColumnResizeOnAllHeaders)) && location.column.resizable && <ResizeColumnHandle />}
+ {(location.row.idx === 0 || (cell.type === 'header' && state.props?.enableColumnResizeOnAllHeaders)) && location.column.resizable && <ResizeColumnHandle />}
138
{location.column.idx === 0 && location.row.resizable && <ResizeRowHandle />}
139
{state.enableGroupIdRender && cell?.groupId !== undefined && !(isInEditMode && isMobile) && (
140
<span className="rg-groupId">{cell.groupId}</span>
0 commit comments