From 00ed955577b7daeb8f801b86053b307be05bfa2a Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 2 Apr 2025 14:39:23 +0200 Subject: [PATCH] fix: refs #8449 reset pagination in VnLog and bind all attributes in AccountDescriptorProxy --- src/components/common/VnLog.vue | 1 + src/pages/Account/Card/AccountDescriptorProxy.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/common/VnLog.vue b/src/components/common/VnLog.vue index 0f5a162e3..e2f18866a 100644 --- a/src/components/common/VnLog.vue +++ b/src/components/common/VnLog.vue @@ -219,6 +219,7 @@ function filterByRecord(modelLog) { } async function applyFilter(params = {}) { + paginate.value.arrayData.resetPagination(); paginate.value.arrayData.applyFilter({ filter: {}, params: { originFk: route.params.id, ...params }, diff --git a/src/pages/Account/Card/AccountDescriptorProxy.vue b/src/pages/Account/Card/AccountDescriptorProxy.vue index de3220fea..6a4b3e267 100644 --- a/src/pages/Account/Card/AccountDescriptorProxy.vue +++ b/src/pages/Account/Card/AccountDescriptorProxy.vue @@ -6,7 +6,7 @@ import AccountSummary from './AccountSummary.vue';