Skip to content

Commit

Permalink
Merge pull request #24113 from StevenKKC/fixParentLinkInHeader
Browse files Browse the repository at this point in the history
fix reply in thread does not have from link in header
  • Loading branch information
bondydaa authored Aug 17, 2023
2 parents 552420f + cd4d7db commit 2e1c4e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libs/ReportUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -1454,12 +1454,12 @@ function getRootReportAndWorkspaceName(report) {

if (isIOURequest(report)) {
return {
rootReportName: lodashGet(report, 'displayName', ''),
rootReportName: getReportName(report),
};
}
if (isExpenseRequest(report)) {
return {
rootReportName: lodashGet(report, 'displayName', ''),
rootReportName: getReportName(report),
workspaceName: isIOUReport(report) ? CONST.POLICY.OWNER_EMAIL_FAKE : getPolicyName(report, true),
};
}
Expand Down

0 comments on commit 2e1c4e7

Please sign in to comment.