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.
1 parent 4a8c777 commit 3ad65fbCopy full SHA for 3ad65fb
packages/anu-vue/src/components/table/ATable.tsx
@@ -231,7 +231,7 @@ export const ATable = defineComponent({
231
)
232
233
// 👉 Paginated Rows
234
- const paginatedRows = ref(sortedRows.value)
+ const paginatedRows = computed(() => sortedRows.value)
235
236
// TODO: Check passing toRef(props, 'pageSize') to useOffsetPagination and use returned `currentPageSize` for reactive pgeSize prop
237
const currentPageSize = ref(props.pageSize)
0 commit comments