Skip to content

Commit

Permalink
Revert "fix for explorer data grid not paginating (opensearch-project…
Browse files Browse the repository at this point in the history
…#1139) (opensearch-project#1141)"

This reverts commit c5ead50.
  • Loading branch information
mengweieric committed Nov 8, 2023
1 parent a7ef63d commit 928d734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/components/event_analytics/explorer/explorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ export const Explorer = ({
explorerFields={explorerFields}
timeStampField={queryRef.current![SELECTED_TIMESTAMP]}
rawQuery={appBasedRef.current || queryRef.current![RAW_QUERY]}
totalHits={_.sum(countDistribution.data['count()'])}
totalHits={explorerData?.datarows?.length || 0}
requestParams={requestParams}
startTime={appLogEvents ? startTime : dateRange[0]}
endTime={appLogEvents ? endTime : dateRange[1]}
Expand Down

0 comments on commit 928d734

Please sign in to comment.