Skip to content

Commit

Permalink
fix: capt nd shows VOR1 (#8270)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saschl authored Oct 27, 2023
1 parent b05a4c5 commit 8f6f017
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fbw-a32nx/src/systems/instruments/src/ND/ND.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ export class NDComponent extends DisplayComponent<NDProps> {
trueTrackWord={this.trueTrackWord}
rangeValue={this.mapRangeRadius}
isUsingTrackUpMode={this.isUsingTrackUpMode}
/* Capt ND shows ILS2 */
index={this.props.side === 'L' ? 2 : 1}
/>
<RoseVorPage
Expand All @@ -293,7 +294,8 @@ export class NDComponent extends DisplayComponent<NDProps> {
trueTrackWord={this.trueTrackWord}
rangeValue={this.mapRangeRadius}
isUsingTrackUpMode={this.isUsingTrackUpMode}
index={this.props.side === 'L' ? 2 : 1}
/* Capt ND shows VOR1 */
index={this.props.side === 'L' ? 1 : 2}
/>
<RoseNavPage
bus={this.props.bus}
Expand Down

0 comments on commit 8f6f017

Please sign in to comment.