From a204b277ed2571643d9f2a2ceee206afab4db140 Mon Sep 17 00:00:00 2001 From: boughtabigk1 <127906713+boughtabigk1@users.noreply.github.com> Date: Fri, 5 Dec 2025 02:07:06 -0500 Subject: [PATCH] Replays: Fix controls when skipping to first turn (#2562) --- replay.pokemonshowdown.com/src/replays-battle.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/replay.pokemonshowdown.com/src/replays-battle.tsx b/replay.pokemonshowdown.com/src/replays-battle.tsx index b5514a4e6..7a020bef6 100644 --- a/replay.pokemonshowdown.com/src/replays-battle.tsx +++ b/replay.pokemonshowdown.com/src/replays-battle.tsx @@ -241,6 +241,7 @@ export class BattlePanel extends preact.Component<{ id: string }> { }; firstTurn = () => { this.battle?.seekTurn(0); + this.forceUpdate(); }; lastTurn = () => { this.battle?.seekTurn(Infinity);