From dc3fd42d63373a55b8fbac61cc99cf934cd324ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=93=E3=81=8B=E3=82=8A?= <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Thu, 23 Jul 2026 17:27:14 +0900 Subject: [PATCH] fix(frontend): follow-up of #17775 --- packages/frontend/src/utility/paginator.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/frontend/src/utility/paginator.ts b/packages/frontend/src/utility/paginator.ts index 471b7c0d91..bd2e8ff80d 100644 --- a/packages/frontend/src/utility/paginator.ts +++ b/packages/frontend/src/utility/paginator.ts @@ -411,7 +411,8 @@ export class Paginator< public releaseQueue(): void { if (this.aheadQueue.length === 0) return; // これやらないと余計なre-renderが走る for (const item of this.aheadQueue) { - item._shouldAnimateIn_ = true; + item._shouldAnimateIn_ = false; // 一気に入るときは挿入アニメーションさせない + item._shouldAnimateOut_ = false; } this.unshiftItems(this.aheadQueue); this.aheadQueue = [];