fix: Pagination of VirtualTable (#23130)

This commit is contained in:
EugeneTorap 2023-02-25 07:21:54 +03:00 committed by GitHub
parent cb9bff72d6
commit 6a484b1553
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -238,7 +238,7 @@ const VirtualTable = (props: TableProps) => {
components={{
body: renderVirtualList,
}}
pagination={modifiedPagination}
pagination={pagination ? modifiedPagination : false}
/>
</div>
);