mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Remove debug logs
This commit is contained in:
@ -1528,7 +1528,6 @@ export async function printCharacters(fullRefresh = false) {
|
|||||||
const entities = getEntitiesList({ doFilter: true });
|
const entities = getEntitiesList({ doFilter: true });
|
||||||
|
|
||||||
const pageSize = Number(accountStorage.getItem(storageKey)) || per_page_default;
|
const pageSize = Number(accountStorage.getItem(storageKey)) || per_page_default;
|
||||||
console.log('pageSize for characters = ' + pageSize);
|
|
||||||
const sizeChangerOptions = [10, 25, 50, 100, 250, 500, 1000];
|
const sizeChangerOptions = [10, 25, 50, 100, 250, 500, 1000];
|
||||||
$('#rm_print_characters_pagination').pagination({
|
$('#rm_print_characters_pagination').pagination({
|
||||||
dataSource: entities,
|
dataSource: entities,
|
||||||
@ -1580,7 +1579,6 @@ export async function printCharacters(fullRefresh = false) {
|
|||||||
},
|
},
|
||||||
afterSizeSelectorChange: function (e, size) {
|
afterSizeSelectorChange: function (e, size) {
|
||||||
accountStorage.setItem(storageKey, e.target.value);
|
accountStorage.setItem(storageKey, e.target.value);
|
||||||
console.log('pageSize for characters after getting updated = ' + accountStorage.getItem(storageKey));
|
|
||||||
paginationDropdownChangeHandler(e, size);
|
paginationDropdownChangeHandler(e, size);
|
||||||
},
|
},
|
||||||
afterPaging: function (e) {
|
afterPaging: function (e) {
|
||||||
|
Reference in New Issue
Block a user