From 5b8e5c3205b8f4aaa05f773b4eae6b47dbee5632 Mon Sep 17 00:00:00 2001 From: leubeem Date: Thu, 2 Jul 2026 09:08:54 +0200 Subject: [PATCH] fix(pm): stop sending placeholder taxi_route so backend computes it The backend computes the real OSM taxi route from airport_icao + stand/runway and falls back to the flow's YAML default on its own. Sending a placeholder taxi_route counted as a caller override and suppressed that computation, so no session ever got a computed route. Drop it from the create payload. Co-Authored-By: Claude Opus 4.8 --- app/pages/pm.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/pages/pm.vue b/app/pages/pm.vue index 4c5b740..49d2eb8 100644 --- a/app/pages/pm.vue +++ b/app/pages/pm.vue @@ -3707,7 +3707,10 @@ const startMonitoring = async (flightPlan: any, scenario: Scenario) => { runway: v.runway || '25R', qnh: String(v.qnh_hpa ?? '1013'), surface_wind: v.surface_wind || '250/08', - taxi_route: v.taxi_route || 'A, B', + // taxi_route is intentionally NOT sent: the backend computes the real OSM + // taxi route (and crossings) from airport_icao + stand/runway, and falls + // back to the flow's YAML default on its own. Sending a placeholder here + // would count as a caller override and suppress that computation. aircraft_type: v.acf_type || 'A320', cruise_level: v.cruise_flight_level || 'FL360', assigned_squawk: String(v.squawk ?? '2000'),