Skip to content

Commit

Permalink
fix: Pagination of VirtualTable
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneTorap committed Feb 20, 2023
1 parent 7bb9b81 commit fb1884a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset-frontend/src/components/Table/VirtualTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ const VirtualTable = (props: TableProps) => {
components={{
body: renderVirtualList,
}}
pagination={modifiedPagination}
pagination={pagination ? modifiedPagination : false}
/>
</div>
);
Expand Down

0 comments on commit fb1884a

Please sign in to comment.