From 947f5e840e9cd71d638566152683d41b81baee20 Mon Sep 17 00:00:00 2001 From: Classic298 <27028174+Classic298@users.noreply.github.com> Date: Fri, 9 May 2025 12:59:50 +0200 Subject: [PATCH] Increased PAGE_ITEM_COUNT to 30 --- backend/open_webui/routers/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/open_webui/routers/users.py b/backend/open_webui/routers/users.py index a2bfbf665..8702ae50b 100644 --- a/backend/open_webui/routers/users.py +++ b/backend/open_webui/routers/users.py @@ -34,7 +34,7 @@ router = APIRouter() ############################ -PAGE_ITEM_COUNT = 10 +PAGE_ITEM_COUNT = 30 @router.get("/", response_model=UserListResponse)