Skip to content

Commit

Permalink
fix(a380x/mfd): Fixed DIRECT TO selection of active waypoint does not…
Browse files Browse the repository at this point in the history
…hing (#9438)

* A380X/MFD Fixed null check on DIRECT TO dropdown for active waypoint

* A380X/MFD Make null check explicit in DIRECT TO dropdown

Co-authored-by: floridude <[email protected]>

---------

Co-authored-by: floridude <[email protected]>
(cherry picked from commit e7df29a)
  • Loading branch information
sognodelx authored and flogross89 committed Nov 7, 2024
1 parent 122ab82 commit 13c2fc4
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 @@ -20,6 +20,7 @@
1. [A380X/FMS] Fixed layouting issue on FMS/ACTIVE/PERF/T.O page for some users - @flogross89 (floridude)
1. [A380X/TELEX] Added popup for telex consent @saschl (saschl) @Maximilian-Reuter (\_chaoz)
1. [A32NX/CAMERA] Improved default camera position for Virtual Reality (VR) - @aguther (Andreas Guther)
1. [A380X/MFD] Fixed DIRECT TO selection of active waypoint does nothing - @sognodelx (Sven Gross)

## 0.12.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class MfdFmsFplnDirectTo extends FmsPage<MfdFmsFplnDirectToProps> {
containerStyle="width: 175px;"
alignLabels="flex-start"
onModified={(i, text) => {
if (i) {
if (i !== null) {
this.onDropdownModified(i, text);
}
}}
Expand Down

0 comments on commit 13c2fc4

Please sign in to comment.