From 6a484b1553b2f54d236f2dd8626448c1e009dc92 Mon Sep 17 00:00:00 2001 From: EugeneTorap Date: Sat, 25 Feb 2023 07:21:54 +0300 Subject: [PATCH] fix: Pagination of VirtualTable (#23130) --- superset-frontend/src/components/Table/VirtualTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/Table/VirtualTable.tsx b/superset-frontend/src/components/Table/VirtualTable.tsx index fc7b7ee27..9169e0753 100644 --- a/superset-frontend/src/components/Table/VirtualTable.tsx +++ b/superset-frontend/src/components/Table/VirtualTable.tsx @@ -238,7 +238,7 @@ const VirtualTable = (props: TableProps) => { components={{ body: renderVirtualList, }} - pagination={modifiedPagination} + pagination={pagination ? modifiedPagination : false} /> );