Skip to content

Commit

Permalink
Merge pull request #32892 from abzokhattab/fix-user-redirect-to-parct…
Browse files Browse the repository at this point in the history
…icpants-when-adding-receipt

[CP Stag] Fix redirection to confirmation page when adding a receipt

(cherry picked from commit 448dfa2)
  • Loading branch information
luacmartins authored and OSBotify committed Dec 12, 2023
1 parent 577cfdb commit 30f6056
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ function MoneyTemporaryForRefactorRequestParticipantsSelector({
Boolean(newChatOptions.userToInvite),
searchTerm.trim(),
maxParticipantsReached,
_.some(participants, (participant) => participant.searchText.toLowerCase().includes(searchTerm.trim().toLowerCase())),
_.some(participants, (participant) => lodashGet(participant, 'searchText', '').toLowerCase().includes(searchTerm.trim().toLowerCase())),
);
const isOptionsDataReady = ReportUtils.isReportDataReady() && OptionsListUtils.isPersonalDetailsReady(personalDetails);

Expand Down

0 comments on commit 30f6056

Please sign in to comment.