Skip to content

Commit

Permalink
- Code lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bnguyen-bcgsc committed Sep 17, 2024
1 parent 0475cb9 commit 2f205e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/QueryResultsTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ const QueryResultsTable = ({
<AgGridReact
{...grid.props}
columnDefs={columnDefs}
rowData={data}
deltaRowDataMode
enableCellTextSelection
frameworkComponents={{ JumpToRecord }}
getRowNodeId={(rowData) => rowData['@rid']}
pagination
paginationAutoPageSize
rowData={data}
suppressHorizontalScroll
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/views/ActivityView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ const ActivityView = () => {
sortable: true,
},
]}
rowData={recentRecords}
deltaRowDataMode
enableCellTextSelection
frameworkComponents={{ JumpToRecord }}
getRowNodeId={(data) => data['@rid']}
pagination
paginationAutoPageSize
rowData={recentRecords}
suppressHorizontalScroll
/>
</div>
Expand Down

0 comments on commit 2f205e7

Please sign in to comment.