fix(frontend): follow-up of #17775

This commit is contained in:
かっこかり
2026-07-23 17:27:14 +09:00
committed by GitHub
parent 34a4b9b74c
commit dc3fd42d63
+2 -1
View File
@@ -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 = [];