diff --git a/packages/frontend/src/components/MkPagination.vue b/packages/frontend/src/components/MkPagination.vue index c865f2640..80396900c 100644 --- a/packages/frontend/src/components/MkPagination.vue +++ b/packages/frontend/src/components/MkPagination.vue @@ -147,7 +147,7 @@ const preventAppearFetchMore = ref(false); const preventAppearFetchMoreTimer = ref(null); const empty = computed(() => items.value.size === 0); const error = ref(false); -const denyMoveTransition = ref(false); +const denyMoveTransition = ref(true); const { enableInfiniteScroll, } = defaultStore.reactiveState; @@ -282,7 +282,7 @@ async function adjustScroll(fn: () => void): Promise { } catch (err) { console.error(err, { scrollableElementOrHtml }); } - denyMoveTransition.value = false; + //denyMoveTransition.value = false; return nextTick(); }); } @@ -581,7 +581,7 @@ async function executeQueue() { await nextTick(); } finally { isPausingUpdate.value = false; - denyMoveTransition.value = false; + //denyMoveTransition.value = false; } }