mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Default to 5 personas per page
This commit is contained in:
@ -5421,8 +5421,8 @@ export async function getUserAvatars(doRender = true) {
|
|||||||
|
|
||||||
$('#persona_pagination_container').pagination({
|
$('#persona_pagination_container').pagination({
|
||||||
dataSource: entities,
|
dataSource: entities,
|
||||||
pageSize: Number(localStorage.getItem(storageKey)) || per_page_default,
|
pageSize: Number(localStorage.getItem(storageKey)) || 5,
|
||||||
sizeChangerOptions: [10, 25, 50, 100, 250, 500, 1000],
|
sizeChangerOptions: [5, 10, 25, 50, 100, 250, 500, 1000],
|
||||||
pageRange: 1,
|
pageRange: 1,
|
||||||
pageNumber: savePersonasPage || 1,
|
pageNumber: savePersonasPage || 1,
|
||||||
position: 'top',
|
position: 'top',
|
||||||
|
Reference in New Issue
Block a user