Skip to content

Commit

Permalink
Merge pull request #39208 from mollfpr/mollfpr-fix-regression-39158
Browse files Browse the repository at this point in the history
Fix LHN preview does not show request description for request with description
  • Loading branch information
Gonals authored Mar 29, 2024
2 parents faff990 + b707769 commit 923eeff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/ReportUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2704,7 +2704,7 @@ function getReportPreviewMessage(
return Localize.translateLocal('iou.payerSpentAmount', {payer: getDisplayNameForParticipant(report.ownerAccountID) ?? '', amount: formattedAmount});
}

return Localize.translateLocal('iou.payerOwesAmount', {payer: payerName ?? '', amount: formattedAmount});
return Localize.translateLocal('iou.payerOwesAmount', {payer: payerName ?? '', amount: formattedAmount, comment});
}

/**
Expand Down

0 comments on commit 923eeff

Please sign in to comment.