Skip to content

Commit

Permalink
Merge pull request #43883 from daledah/fix/43575
Browse files Browse the repository at this point in the history
fix: Two unread markers when marking message unread in invoice thread
  • Loading branch information
jasperhuangg authored Jun 20, 2024
2 parents dd549f7 + bcafaf1 commit 01579a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/report/ReportActionsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ function ReportActionsList({
return !ReportUtils.isCanceledTaskReport(report, parentReportAction);
}

return ReportUtils.isExpenseReport(report) || ReportUtils.isIOUReport(report);
return ReportUtils.isExpenseReport(report) || ReportUtils.isIOUReport(report) || ReportUtils.isInvoiceReport(report);
}, [parentReportAction, report, sortedVisibleReportActions]);

// storing the last read time used to render the unread marker
Expand Down

0 comments on commit 01579a5

Please sign in to comment.