We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eae70cf commit d3dafefCopy full SHA for d3dafef
1 file changed
src/libs/ReportUtils.ts
@@ -189,6 +189,7 @@ import {
189
isOldDotReportAction,
190
isPendingRemove,
191
isPolicyChangeLogAction,
192
+ isReimbursementDeQueuedOrCanceledAction,
193
isReimbursementQueuedAction,
194
isRenamedAction,
195
isReopenedAction,
@@ -4623,6 +4624,10 @@ function getReportActionMessage({
4623
4624
});
4625
}
4626
4627
+ if (isReimbursementDeQueuedOrCanceledAction(reportAction)) {
4628
+ return getReimbursementDeQueuedOrCanceledActionMessage(reportAction, getReportOrDraftReport(reportID, reports));
4629
+ }
4630
+
4631
return parseReportActionHtmlToText(reportAction, reportID, childReportID);
4632
4633
0 commit comments