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

rusackas 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 9a79dbf4457 fix(docs): make page size selector work in database table 
(#37863)
9a79dbf4457 is described below

commit 9a79dbf445797cbbe2cabd375457e78975486b34
Author: Evan Rusackas <[email protected]>
AuthorDate: Wed Feb 11 01:15:55 2026 -0500

    fix(docs): make page size selector work in database table (#37863)
    
    Co-authored-by: Claude Opus 4.5 <[email protected]>
---
 docs/src/components/databases/DatabaseIndex.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/src/components/databases/DatabaseIndex.tsx 
b/docs/src/components/databases/DatabaseIndex.tsx
index fee4f1a36bb..26f71522dfc 100644
--- a/docs/src/components/databases/DatabaseIndex.tsx
+++ b/docs/src/components/databases/DatabaseIndex.tsx
@@ -579,7 +579,7 @@ const DatabaseIndex: React.FC<DatabaseIndexProps> = ({ data 
}) => {
         columns={columns}
         rowKey={(record) => record.isCompatible ? 
`${record.compatibleWith}-${record.name}` : record.name}
         pagination={{
-          pageSize: 20,
+          defaultPageSize: 20,
           showSizeChanger: true,
           showTotal: (total) => `${total} databases`,
         }}

Reply via email to