mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 06:43:51 +02:00
Fix friends list table size
This commit is contained in:
@@ -153,9 +153,7 @@
|
||||
);
|
||||
|
||||
const totalItems = computed(() => {
|
||||
const length = table.getFilteredRowModel().rows.length;
|
||||
const max = vrcxStore.maxTableSize;
|
||||
return length > max ? max : length;
|
||||
return table.getFilteredRowModel().rows.length;
|
||||
});
|
||||
|
||||
const handlePageSizeChange = (size) => {
|
||||
|
||||
@@ -237,9 +237,7 @@
|
||||
);
|
||||
|
||||
const totalItems = computed(() => {
|
||||
const length = table.getFilteredRowModel().rows.length;
|
||||
const max = vrcxStore.maxTableSize;
|
||||
return length > max ? max : length;
|
||||
return table.getFilteredRowModel().rows.length;
|
||||
});
|
||||
|
||||
const handlePageSizeChange = (size) => {
|
||||
|
||||
Reference in New Issue
Block a user