Skip to content

Commit

Permalink
fix(a380x/mfd): Fix callsign display after flybywiresim#9765
Browse files Browse the repository at this point in the history
  • Loading branch information
flogross89 committed Jan 31, 2025
1 parent 702d5eb commit 2f5b0f7
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,7 @@ export abstract class AbstractHeader extends DisplayComponent<AbstractMfdHeaderP
hEventConsumer={this.props.mfd.hEventConsumer}
interactionMode={this.props.mfd.interactionMode}
/>
<span class="mfd-header-callsign">
{this.props.callsign.map((cs) => (cs !== null ? this.props.callsign : '----------'))}
</span>
<span class="mfd-header-callsign">{this.props.callsign.map((cs) => (cs !== null ? cs : '----------'))}</span>
</div>
);
}
Expand Down

0 comments on commit 2f5b0f7

Please sign in to comment.