Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(a380/mfd): FLT NBR is now displayed as a mandatory input field #9765

Merged
merged 9 commits into from
Jan 29, 2025
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<!-- Always use "1." at the start instead of "2. " or "X. " as GitHub will auto renumber everything. -->
<!-- Use the following format below -->
<!-- 1. [Changed Area] Title of changes - @github username (Name) -->
1. [A380X/MFD] Fixed FLT NBR not displaying as a mandatory input field - @jet2code (john.xyz)
jet2code marked this conversation as resolved.
Show resolved Hide resolved

## 0.13.0

Expand Down
2 changes: 1 addition & 1 deletion fbw-a380x/src/systems/instruments/src/MFD/FMC/fmgc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class FmgcData {

public readonly cpnyFplnUplinkInProgress = Subject.create(false);

public readonly atcCallsign = Subject.create<string>('----------');
public readonly atcCallsign = Subject.create<string | null>(null);

/** in degrees celsius. null if not set. */
public readonly cruiseTemperaturePilotEntry = Subject.create<number | null>(null);
Expand Down
Loading