Skip to content
This repository was archived by the owner on Apr 28, 2026. It is now read-only.

Commit ea44617

Browse files
committed
default table row to 50
1 parent 0d6e6f7 commit ea44617

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pcweb/pages/docs/custom_components.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class CustomComponentGalleryState(rx.State):
2626
original_components_list: list[dict[str, str]] = []
2727

2828
current_page: int = 1
29-
current_limit: int = 10 # Default number of items per page
29+
current_limit: int = 50 # Default number of items per page
3030
total_pages: int = 1
3131
offset: int = 0
3232
number_of_rows: int = 0
@@ -353,7 +353,7 @@ def create_pagination():
353353
rx.text("Rows per page", weight="bold", font_size="12px"),
354354
rx.select(
355355
CustomComponentGalleryState.limits,
356-
default_value="10",
356+
default_value="50",
357357
on_change=CustomComponentGalleryState.delta_limit,
358358
width="80px",
359359
),

0 commit comments

Comments
 (0)