From 3f29349815955b3fe044a77d12342347b6153d90 Mon Sep 17 00:00:00 2001 From: Andrew Li Date: Thu, 6 Jul 2023 11:43:21 -0400 Subject: [PATCH] Hide only chat threads that haven't been commented on --- src/libs/ReportUtils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index 1631b71d6049..83a3d7e7b707 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -2018,8 +2018,8 @@ function shouldReportBeInOptionList(report, currentReportId, isInGSDMode, iouRep return false; } - // Hide thread reports that haven't been commented on - if (isThread(report) && !report.lastMessageText) { + // Hide only chat threads that haven't been commented on (other threads are actionable) + if (isChatThread(report) && !report.lastMessageText) { return false; }