@tekkare/auriga 0.1.29 → 0.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -568,7 +568,7 @@ export default defineComponent({
|
|
|
568
568
|
return sorted.value.filter((row, index) => {
|
|
569
569
|
const start = (currentPage.value - 1) * savePageSize.value;
|
|
570
570
|
const end = currentPage.value * savePageSize.value;
|
|
571
|
-
if (index >= start && index
|
|
571
|
+
if (index >= start && index <= end)
|
|
572
572
|
return true;
|
|
573
573
|
return false;
|
|
574
574
|
});
|