Skip to content

Commit

Permalink
Merge pull request #42474 from bernhardoj/fix/41510-assign-to-me-missing
Browse files Browse the repository at this point in the history
Fix “Assign to me” missing in list of assignees
  • Loading branch information
arosiclair committed May 23, 2024
2 parents aa9bbcf + ef57f2a commit 2c9cc0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/OptionsListUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@ function createOptionList(personalDetails: OnyxEntry<PersonalDetailsList>, repor
// Save the report in the map if this is a single participant so we can associate the reportID with the
// personal detail option later. Individuals should not be associated with single participant
// policyExpenseChats or chatRooms since those are not people.
if (accountIDs.length <= 1) {
if (accountIDs.length <= 1 && isOneOnOneChat) {
reportMapForAccountIDs[accountIDs[0]] = report;
}

Expand Down

0 comments on commit 2c9cc0a

Please sign in to comment.