Skip to content

Commit

Permalink
Merge pull request #4400 from spadgett/fix-dashboard-table-paging
Browse files Browse the repository at this point in the history
Bug 1804827: Fix incorrect item count for dashboard tables
  • Loading branch information
openshift-merge-robot committed Feb 22, 2020
2 parents 8f97481 + cc71c16 commit bef779c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/public/components/monitoring/dashboards/table.tsx
Expand Up @@ -172,7 +172,7 @@ const Table: React.FC<Props> = ({ panel, pollInterval, queries }) => {
</PFTable>
</div>
<TablePagination
itemCount={rows.length}
itemCount={sortedData.length}
paginationOptions={paginationOptions}
page={page}
perPage={perPage}
Expand Down

0 comments on commit bef779c

Please sign in to comment.