Skip to content

Commit

Permalink
[fbw] fix(EFB): ASU now correctly reenables after disabling due to mo…
Browse files Browse the repository at this point in the history
…ving once stopped (#8293)
  • Loading branch information
masterrob94 committed Dec 28, 2023
1 parent c2bf8b7 commit 6a86bd0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,7 @@ export const A318Services: React.FC = () => {
dispatch(setBoarding3DoorButtonState(ServiceButtonState.INACTIVE));
dispatch(setServiceDoorButtonState(ServiceButtonState.INACTIVE));
dispatch(setCateringButtonState(ServiceButtonState.INACTIVE));
dispatch(setAsuButtonState(ServiceButtonState.INACTIVE));
}
}, [groundServicesAvailable]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,7 @@ export const A319Services: React.FC = () => {
dispatch(setBoarding3DoorButtonState(ServiceButtonState.INACTIVE));
dispatch(setServiceDoorButtonState(ServiceButtonState.INACTIVE));
dispatch(setCateringButtonState(ServiceButtonState.INACTIVE));
dispatch(setAsuButtonState(ServiceButtonState.INACTIVE));
}
}, [groundServicesAvailable]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,7 @@ export const A320Services: React.FC = () => {
dispatch(setBoarding3DoorButtonState(ServiceButtonState.INACTIVE));
dispatch(setServiceDoorButtonState(ServiceButtonState.INACTIVE));
dispatch(setCateringButtonState(ServiceButtonState.INACTIVE));
dispatch(setAsuButtonState(ServiceButtonState.INACTIVE));
}
}, [groundServicesAvailable]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,7 @@ export const A321Services: React.FC = () => {
dispatch(setBoarding3DoorButtonState(ServiceButtonState.INACTIVE));
dispatch(setServiceDoorButtonState(ServiceButtonState.INACTIVE));
dispatch(setCateringButtonState(ServiceButtonState.INACTIVE));
dispatch(setAsuButtonState(ServiceButtonState.INACTIVE));
}
}, [groundServicesAvailable]);

Expand Down

0 comments on commit 6a86bd0

Please sign in to comment.