@dataloop-ai/components 0.18.92 → 0.18.93
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/package.json
CHANGED
|
@@ -959,7 +959,7 @@ export default defineComponent({
|
|
|
959
959
|
|
|
960
960
|
if (props.filter) {
|
|
961
961
|
filtered = computedFilterMethod.value(
|
|
962
|
-
rows,
|
|
962
|
+
rows.value,
|
|
963
963
|
props.filter,
|
|
964
964
|
computedCols.value,
|
|
965
965
|
getCellValue
|
|
@@ -992,10 +992,14 @@ export default defineComponent({
|
|
|
992
992
|
filtered = filtered.slice(0, lastRowIndex.value)
|
|
993
993
|
}
|
|
994
994
|
} else {
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
995
|
+
if (
|
|
996
|
+
filtered.length > computedPagination.value.rowsPerPage
|
|
997
|
+
) {
|
|
998
|
+
filtered = filtered.slice(
|
|
999
|
+
firstRowIndex.value,
|
|
1000
|
+
lastRowIndex.value
|
|
1001
|
+
)
|
|
1002
|
+
}
|
|
999
1003
|
}
|
|
1000
1004
|
}
|
|
1001
1005
|
|