add searchTableSize limit

This commit is contained in:
pa
2026-02-01 01:58:09 +09:00
parent d9080205e5
commit 0b59423f61
28 changed files with 346 additions and 102 deletions

View File

@@ -127,7 +127,7 @@
const totalItems = computed(() => {
const length = table.getFilteredRowModel().rows.length;
const max = vrcxStore.maxTableSize;
return length > max && length < max + 51 ? max : length;
return length > max ? max : length;
});
const handlePageSizeChange = (size) => {

View File

@@ -225,7 +225,7 @@
const totalItems = computed(() => {
const length = table.getFilteredRowModel().rows.length;
const max = vrcxStore.maxTableSize;
return length > max && length < max + 51 ? max : length;
return length > max ? max : length;
});
const handlePageSizeChange = (size) => {