diff --git a/frontend/app/knowledge/page.tsx b/frontend/app/knowledge/page.tsx index 4a26b38f..85189a85 100644 --- a/frontend/app/knowledge/page.tsx +++ b/frontend/app/knowledge/page.tsx @@ -361,6 +361,15 @@ function SearchPage() { } }; + // enables pagination in the grid + const pagination = true; + + // sets 25 rows per page (default is 100) + const paginationPageSize = 25; + + // allows the user to select the page size from a predefined list of page sizes + const paginationPageSizeSelector = [10, 25, 50, 100]; + return ( <>