From 0f6f642fd903f674ffdf9c358e8436fbc3ba5a29 Mon Sep 17 00:00:00 2001 From: James Smith Date: Tue, 30 Dec 2025 15:22:22 +0000 Subject: [PATCH] Fix satellite dashboard to fetch full orbit immediately on pass select MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added updateRealTimePositions() call to selectPass() so the full orbit track is fetched immediately when a pass is selected, not just on the 5-second interval. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- templates/satellite_dashboard.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/satellite_dashboard.html b/templates/satellite_dashboard.html index 6a4beca..55007a8 100644 --- a/templates/satellite_dashboard.html +++ b/templates/satellite_dashboard.html @@ -1039,6 +1039,8 @@ drawPolarPlot(pass); updateGroundTrack(pass); updateTelemetry(pass); + // Immediately fetch full orbit track + updateRealTimePositions(); } function drawPolarPlot(pass) {