You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2023/10/05 19:03:28 UTC

[superset] branch master updated: fix: Tags Page ListView size to 10 (#25536)

This is an automated email from the ASF dual-hosted git repository.

hugh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c40bea064 fix: Tags Page ListView size to 10 (#25536)
0c40bea064 is described below

commit 0c40bea0643ec2b0cc725ec646c9fa97319d9565
Author: Hugh A. Miles II <hu...@gmail.com>
AuthorDate: Thu Oct 5 15:03:19 2023 -0400

    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 ac54420824..50fdd5a51b 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;