Skip to content

Commit

Permalink
fix(fms): regression of approach ident on ND (#9158)
Browse files Browse the repository at this point in the history
* fix(fms): regression of approach ident on ND

* docs: add changelog
  • Loading branch information
BravoMike99 authored Feb 5, 2025
1 parent 55d57e1 commit cc884bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit cc884bb

Please sign in to comment.