From fd53651e6355dc008d215347955315cd6e6b7546 Mon Sep 17 00:00:00 2001 From: Bernhard Owen Josephus Date: Tue, 17 Dec 2024 22:18:56 +0800 Subject: [PATCH] fix reimbursed action thread doesn't show full title --- src/libs/ReportUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index eb728586f8f2..d2ec8fb3ac62 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -3900,7 +3900,7 @@ function getReportActionMessage(reportAction: OnyxEntry, reportID? if (reportAction.actionName === CONST.REPORT.ACTIONS.TYPE.UNHOLD) { return Localize.translateLocal('iou.unheldExpense'); } - if (ReportActionsUtils.isApprovedOrSubmittedReportAction(reportAction)) { + if (ReportActionsUtils.isApprovedOrSubmittedReportAction(reportAction) || ReportActionsUtils.isActionOfType(reportAction, CONST.REPORT.ACTIONS.TYPE.REIMBURSED)) { return ReportActionsUtils.getReportActionMessageText(reportAction); } if (ReportActionsUtils.isReimbursementQueuedAction(reportAction)) {