Skip to content

Commit

Permalink
fix(atsu): Departure request page not updating after successful stati…
Browse files Browse the repository at this point in the history
…on insert (#8279)

* fix(atsu): departreq not updating on station insert

* fix(mcdu): add atc depart req to cdu page object

---------

Co-authored-by: BBK <22713769+BlueberryKing@users.noreply.github.com>
  • Loading branch information
BravoMike99 and BlueberryKing committed Nov 2, 2023
1 parent b26e4b1 commit 321216d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
1. [FMS] Improve layout of PERF CLB, PERF CRZ and PERF DES pages according to H3 - @BlueberryKing (BlueberryKing)
1. [FMS] Implement CHECK SPEED MODE message - @BlueberryKing (BlueberryKing)
1. [PFD] The ILS frequency is now visible even when a LOC is not received - @tracernz (Mike)
1. [ATSU] Fixed GROUND REQ page not updating after successful station insert - @BravoMike99 (bruno_pt99)

## 0.11.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ class A320_Neo_CDU_MainDisplay extends FMCMainDisplay {
AOCSentMsgs: 75,
AOCFreeText: 76,
StepAltsPage: 77,
ATCDepartReq: 78,
};

this.mcduServerClient = undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class CDUAtcDepartReq {

static ShowPage1(mcdu, store = CDUAtcDepartReq.CreateDataBlock()) {
mcdu.clearDisplay();
mcdu.page.Current = mcdu.page.ATCDepartReq;

if (store.firstCall && store.callsign === "") {
if (mcdu.atsu.flightNumber().length !== 0) {
Expand Down

0 comments on commit 321216d

Please sign in to comment.