mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 22:35:23 +00:00
Merge pull request #13730 from Classic298/dev
feat: Increase default users per page in admin panel to 30
This commit is contained in:
commit
616e9e2760
2 changed files with 2 additions and 2 deletions
|
|
@ -34,7 +34,7 @@ router = APIRouter()
|
||||||
############################
|
############################
|
||||||
|
|
||||||
|
|
||||||
PAGE_ITEM_COUNT = 10
|
PAGE_ITEM_COUNT = 30
|
||||||
|
|
||||||
|
|
||||||
@router.get("/", response_model=UserListResponse)
|
@router.get("/", response_model=UserListResponse)
|
||||||
|
|
|
||||||
|
|
@ -521,7 +521,7 @@
|
||||||
ⓘ {$i18n.t("Click on the user role button to change a user's role.")}
|
ⓘ {$i18n.t("Click on the user role button to change a user's role.")}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Pagination bind:page count={total} perPage={10} />
|
<Pagination bind:page count={total} perPage={30} />
|
||||||
|
|
||||||
{#if !$config?.license_metadata}
|
{#if !$config?.license_metadata}
|
||||||
{#if total > 50}
|
{#if total > 50}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue