We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74f41ac + 48ff675 commit f271b5eCopy full SHA for f271b5e
package.json
@@ -3,7 +3,7 @@
3
"author": "HC200ok",
4
"description": "A customizable and easy-to-use data table component made with Vue.js 3.x.",
5
"private": false,
6
- "version": "1.2.8",
+ "version": "1.2.9",
7
"types": "./types/main.d.ts",
8
"license": "MIT",
9
"files": [
src/components/DataTable.vue
@@ -550,7 +550,7 @@ const currentPaginationNumber = ref(isServerSideMode.value ? props.serverOptions
550
551
const { items } = toRefs(props);
552
watch(items, () => {
553
- currentPaginationNumber.value = 1;
+ if (!isServerSideMode.value) currentPaginationNumber.value = 1;
554
}, { deep: true });
555
556
// rows per page
0 commit comments