mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(editor): Sort insights table with tabs (no-changelog) (#14467)
This commit is contained in:
committed by
GitHub
parent
2a5c3d4990
commit
707ecb63ae
@@ -203,7 +203,7 @@ const page = defineModel<number>('page', { default: 0 });
|
||||
watch(page, () => table.setPageIndex(page.value));
|
||||
|
||||
const itemsPerPage = defineModel<number>('items-per-page', { default: 10 });
|
||||
watch(itemsPerPage, () => table.setPageSize(itemsPerPage.value));
|
||||
watch(itemsPerPage, () => (page.value = 0));
|
||||
|
||||
const pagination = computed<PaginationState>({
|
||||
get() {
|
||||
|
||||
Reference in New Issue
Block a user