From cc2c45847f4e2092c359a91fdf824bc5568e123e Mon Sep 17 00:00:00 2001 From: pa Date: Mon, 9 Feb 2026 14:57:41 +0900 Subject: [PATCH] disable autoResetPageIndex --- src/views/Feed/Feed.vue | 3 ++- src/views/FriendLog/FriendLog.vue | 3 +++ src/views/GameLog/GameLog.vue | 3 +++ src/views/Notifications/Notification.vue | 3 +++ 4 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/views/Feed/Feed.vue b/src/views/Feed/Feed.vue index c758a834..99982c1b 100644 --- a/src/views/Feed/Feed.vue +++ b/src/views/Feed/Feed.vue @@ -106,7 +106,8 @@ pageSize: pageSize.value }, tableOptions: { - autoResetExpanded: false + autoResetExpanded: false, + autoResetPageIndex: false } }); diff --git a/src/views/FriendLog/FriendLog.vue b/src/views/FriendLog/FriendLog.vue index 4ae0776b..90814601 100644 --- a/src/views/FriendLog/FriendLog.vue +++ b/src/views/FriendLog/FriendLog.vue @@ -184,6 +184,9 @@ initialPagination: { pageIndex: 0, pageSize: pageSize.value + }, + tableOptions: { + autoResetPageIndex: false } }); diff --git a/src/views/GameLog/GameLog.vue b/src/views/GameLog/GameLog.vue index e1fd5384..1766d6be 100644 --- a/src/views/GameLog/GameLog.vue +++ b/src/views/GameLog/GameLog.vue @@ -154,6 +154,9 @@ initialPagination: { pageIndex: 0, pageSize: pageSize.value + }, + tableOptions: { + autoResetPageIndex: false } }); diff --git a/src/views/Notifications/Notification.vue b/src/views/Notifications/Notification.vue index 6ee26562..1099fbd5 100644 --- a/src/views/Notifications/Notification.vue +++ b/src/views/Notifications/Notification.vue @@ -240,6 +240,9 @@ initialPagination: { pageIndex: 0, pageSize: pageSize.value + }, + tableOptions: { + autoResetPageIndex: false } });