Skip to content

Commit

Permalink
fix: Added domLayout property
Browse files Browse the repository at this point in the history
  • Loading branch information
matttdawson authored Oct 27, 2022
1 parent 2894ea7 commit dfa648c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/Grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export interface GridProps {
quickFilter?: boolean;
quickFilterPlaceholder?: string;
quickFilterValue?: string;
domLayout?: GridOptions["domLayout"];
externalSelectedItems?: any[];
setExternalSelectedItems?: (items: any[]) => void;
onGridReady?: GridOptions["onGridReady"];
Expand Down Expand Up @@ -259,6 +260,7 @@ export const Grid = (params: GridProps): JSX.Element => {
onCellDoubleClicked={onCellDoubleClick}
onCellEditingStarted={refreshSelectedRows}
onCellEditingStopped={onCellEditingStopped}
domLayout={params.domLayout}
columnDefs={columnDefs}
rowData={params.rowData}
noRowsOverlayComponent={noRowsOverlayComponent}
Expand Down

0 comments on commit dfa648c

Please sign in to comment.