Closed IuliiaHerets closed 1 month ago
Triggered auto assignment to @anmurali (Bug
), see https://stackoverflow.com/c/expensify/questions/14418 for more details. Please add this bug to a GH project, as outlined in the SO.
Triggered auto assignment to @iwiznia (DeployBlockerCash
), see https://stackoverflowteams.com/c/expensify/questions/9980/ for more details.
:wave: Friendly reminder that deploy blockers are time-sensitive ⏱ issues! Check out the open `StagingDeployCash` deploy checklist to see the list of PRs included in this release, then work quickly to do one of the following:
Regression from: https://github.com/Expensify/App/pull/32711
iOS - Composer - No copy paste option in edit mode
We recently introduce the logic of hiding context menu for Composer text input with contextMenuHidden
in https://github.com/Expensify/App/pull/32711
We already implemented it for the main composer however we forgot to implement onTouchStart
for the composer of ReportActionItemMessageEdit
which makes the showSoftInputOnFocus
is always undefined and because of that the condition inside native composer is never called:
useEffect(() => {
if (!showSoftInputOnFocus || !isKeyboardShown) {
return;
}
setContextMenuHidden(false);
}, [showSoftInputOnFocus, isKeyboardShown]);
Just implement the logic of onTouchStart for the composer of ReportActionItemMessageEdit
too:
onTouchStart={() => {
if (showSoftInputOnFocus) {
return;
}
if (Browser.isMobileSafari()) {
setTimeout(() => {
setShowSoftInputOnFocus(true);
}, CONST.ANIMATED_TRANSITION);
return;
}
setShowSoftInputOnFocus(true);
}}
N/A
Retest request is here for easy access
If you haven’t already, check out our contributing guidelines for onboarding and email contributors@expensify.com to request to join our Slack channel!
Version Number: 9.0..42-0 Reproducible in staging?: Y Reproducible in production?: N Email or phone of affected tester (no customers): applausetester+zm27@applause.expensifail.com Issue reported by: Applause Internal Team
Action Performed:
Expected Result:
There will be copy paste option in edit mode.
Actual Result:
There is no copy paste option in edit mode.
Workaround:
Unknown
Platforms:
Screenshots/Videos
https://github.com/user-attachments/assets/3f15d162-7310-4d2a-9a77-85b3361f0ab7
View all open jobs on GitHub