diff --git a/webapp/src/components/common/DataGrid.tsx b/webapp/src/components/common/DataGrid.tsx index 39659f4e24..40eb3ad8c0 100644 --- a/webapp/src/components/common/DataGrid.tsx +++ b/webapp/src/components/common/DataGrid.tsx @@ -46,7 +46,6 @@ export interface DataGridProps extends Omit({ rows: CompactSelection.empty(), @@ -281,12 +275,8 @@ function DataGrid({ rowHeight={ROW_HEIGHT} smoothScrollX smoothScrollY - overscrollX={OVERSCROLL} - overscrollY={OVERSCROLL} width="100%" - height={height} theme={darkTheme} - {...rest} rows={rows} columns={columns} rowMarkers={isStringRowMarkers ? "none" : rowMarkersOptions} @@ -299,6 +289,7 @@ function DataGrid({ gridSelection={gridSelection} onGridSelectionChange={handleGridSelectionChange} freezeColumns={adjustedFreezeColumns} + {...rest} /> ); }