From cc884bb3fdd3a33da2c410fd565be32f098f059f Mon Sep 17 00:00:00 2001 From: BravoMike99 <119708186+BravoMike99@users.noreply.github.com> Date: Wed, 5 Feb 2025 00:51:01 +0000 Subject: [PATCH] fix(fms): regression of approach ident on ND (#9158) * fix(fms): regression of approach ident on ND * docs: add changelog --- .github/CHANGELOG.md | 1 + fbw-a32nx/src/systems/fmgc/src/guidance/GuidanceController.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 05325b4be52..3956b0ed777 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -149,6 +149,7 @@ 1. [A380X/FMS] Add basic FIX INFO functionality - @Benjozork (Benjamin Dupont) 1. [A380X/FMS] Add STEP ALTs tab on VERT REV page & auto step climb functionality - @flogross89 (floridude) 1. [A380X/FMS] Add selection of CLB/DES constraint if constraint type is unknown - @flogross89 (floridude) +1. [FMS] Fix approach ident only showing on ND when approach is being flown - @BravoMike99 (bruno_pt99) ## 0.12.0 diff --git a/fbw-a32nx/src/systems/fmgc/src/guidance/GuidanceController.ts b/fbw-a32nx/src/systems/fmgc/src/guidance/GuidanceController.ts index 628d2187f56..f8f1a470eec 100644 --- a/fbw-a32nx/src/systems/fmgc/src/guidance/GuidanceController.ts +++ b/fbw-a32nx/src/systems/fmgc/src/guidance/GuidanceController.ts @@ -223,7 +223,7 @@ export class GuidanceController { apprMsg = this.flightPlanService.active.originDeparture.ident; } } else { - const runway = this.flightPlanService.active.isApproachActive; + const runway = this.flightPlanService.active.destinationRunway; if (runway) { const distanceToDestination = this.alongTrackDistanceToDestination ?? -1;