We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a5cab commit 6c76b79Copy full SHA for 6c76b79
packages/compass-crud/src/components/table-view/document-table-view.tsx
@@ -629,7 +629,9 @@ class DocumentTableView extends React.Component<DocumentTableViewProps> {
629
630
(this.gridApi as any).gridOptionsWrapper.gridOptions.context.path =
631
params.path;
632
- this.gridApi.setRowData(this.createRowData(this.props.docs, 1));
+ this.gridApi.setRowData(
633
+ this.createRowData(this.props.docs, this.props.start)
634
+ );
635
this.gridApi.setColumnDefs(headers);
636
}
637
this.gridApi.refreshCells({ force: true });
0 commit comments