From 0c40bea0643ec2b0cc725ec646c9fa97319d9565 Mon Sep 17 00:00:00 2001 From: "Hugh A. Miles II" Date: Thu, 5 Oct 2023 15:03:19 -0400 Subject: [PATCH] fix: Tags Page ListView size to 10 (#25536) --- superset-frontend/src/features/allEntities/AllEntitiesTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/features/allEntities/AllEntitiesTable.tsx b/superset-frontend/src/features/allEntities/AllEntitiesTable.tsx index ac544208247ac..50fdd5a51b9fe 100644 --- a/superset-frontend/src/features/allEntities/AllEntitiesTable.tsx +++ b/superset-frontend/src/features/allEntities/AllEntitiesTable.tsx @@ -27,7 +27,7 @@ import Owner from 'src/types/Owner'; import { EmptyStateBig } from 'src/components/EmptyState'; const MAX_TAGS_TO_SHOW = 3; -const PAGE_SIZE = 5; +const PAGE_SIZE = 10; const AllEntitiesTableContainer = styled.div` text-align: left;