diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index da109d7bc11..872219b842c 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -80,6 +80,7 @@ 1. [FMS] Fixed issue with airport loading timing out on MSFS2024 - @tracernz (Mike) 1. [A32NX] Fixed APU fire detection - @tracernz (Mike) 1. [A380X/COND] Fix wasm crash during rapid decompression - @mjuhe (Miquel Juhe) +1. [A32NX/EWD] Corrected fuel flow step to 20kg/40lbs per hour - @BravoMike99 (bruno_pt99) 1. [A380X] Fix EWD avail. thrust fill area & PFD rudder trim visibility on ground - @flogross89 (floridude) 1. [A380X/LIGHTS] Fix function of FCU brightness knobs - @heclak (Heclak) 1. [A380X/FWS] Fix "NO ZFW OR ZFWCG DATA" ECAM alert after landing - @flogross89 (floridude) diff --git a/fbw-a32nx/src/systems/instruments/src/EWD/FF.tsx b/fbw-a32nx/src/systems/instruments/src/EWD/FF.tsx index 8fb90cfc429..18be19811e4 100644 --- a/fbw-a32nx/src/systems/instruments/src/EWD/FF.tsx +++ b/fbw-a32nx/src/systems/instruments/src/EWD/FF.tsx @@ -41,7 +41,7 @@ export class FF extends DisplayComponent { .atFrequency(1) .handle((ff) => { const metric = this.props.metric.get(); - this.ff.set(fuelForDisplay(ff, metric ? '1' : '0')); + this.ff.set(fuelForDisplay(ff, metric ? '1' : '0', 1, 2)); }); }