-
Notifications
You must be signed in to change notification settings - Fork 3k
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 Share somewhere in assign task shows a wrong report #23338
Fix Share somewhere in assign task shows a wrong report #23338
Conversation
@abdulrahuman5196 Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button] |
// Only return the room if it has all the participants and is not a policy room | ||
return !isUserCreatedPolicyRoom(report) && _.isEqual(newParticipantList, _.sortBy(report.participantAccountIDs)); | ||
// Only return the chat if it has all the participants | ||
return _.isEqual(newParticipantList, _.sortBy(report.participantAccountIDs)); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isUserCreatedPolicyRoom
is included in isChatRoom
If we take a look at the usages of
So, this PR will fix all bugs in all usages above. Here is one of the examples that the Screen.Recording.2023-07-21.at.14.15.17.mov |
Reviewer Checklist
Screenshots/VideosWebScreen.Recording.2023-07-23.at.6.39.59.PM.mp4Mobile Web - Chromeaz_recorder_20230723_185301.mp4Mobile Web - SafariUntitled.mp4DesktopScreen.Recording.2023-07-23.at.6.56.49.PM.mp4iOSScreen.Recording.2023-07-23.at.7.09.00.PM.mp4Androidaz_recorder_20230723_190436.mp4 |
@bernhardoj Thank you for checking all the instances of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes looks good and works well. Reviewers checklist is also complete.
All yours. @robertjchen
🎀 👀 🎀
C+ Reviewed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release. |
🚀 Deployed to staging by https://github.com/robertjchen in version: 1.3.45-0 🚀
|
🚀 Deployed to production by https://github.com/mountiny in version: 1.3.45-7 🚀
|
Details
In the assign task page, when we select an assignee, it will automatically find the report of the assignee (using
getChatByParticipants
) and set it as the value of Share somewhere. However,getChatByParticipants
may find a wrong report that has the same participant, for example, task report. This PR make suregetChatByParticipants
filtering out task, money request, chat room, and policy expense report.Fixed Issues
$ #22433
PROPOSAL: #22433 (comment)
Tests
Same as QA Steps
Offline tests
Same as QA Steps
QA Steps
Prerequisite: user A assigns a task to user B
As user A:
PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)myBool && <MyComponent />
.src/languages/*
files and using the translation methodWaiting for Copy
label for a copy review on the original GH to get the correct copy.STYLE.md
) were followedAvatar
, I verified the components usingAvatar
are working as expected)/** comment above it */
this
properly so there are no scoping issues (i.e. foronClick={this.submit}
the methodthis.submit
should be bound tothis
in the constructor)this
are necessary to be bound (i.e. avoidthis.submit = this.submit.bind(this);
ifthis.submit
is never passed to a component event handler likeonClick
)StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG)
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)ScrollView
component to make it scrollable when more elements are added to the page.main
branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTest
steps.Screenshots/Videos
Web
Screen.Recording.2023-07-21.at.15.56.41.mov
Mobile Web - Chrome
Chrome.mp4
Mobile Web - Safari
Screen.Recording.2023-07-21.at.16.02.23.mov
Desktop
Screen.Recording.2023-07-21.at.16.01.55.mov
iOS
Screen.Recording.2023-07-21.at.16.04.35.mov
Android
New.Expensify.mp4