We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ef627 commit d133b6aCopy full SHA for d133b6a
1 file changed
src/libs/SidebarUtils.ts
@@ -239,13 +239,7 @@ function shouldDisplayReportInLHN(
239
const isSystemChat = isSystemChatUtil(report);
240
const isReportArchived = isArchivedReport(reportNameValuePairs);
241
const shouldOverrideHidden =
242
- hasValidDraftComment(report.reportID) ||
243
- hasErrorsOtherThanFailedReceipt ||
244
- isFocused ||
245
- isSystemChat ||
246
- !!report.isPinned ||
247
- (!isInFocusMode && isReportArchived) ||
248
- reportAttributes?.[report?.reportID]?.requiresAttention;
+ hasValidDraftComment(report.reportID) || hasErrorsOtherThanFailedReceipt || isFocused || isSystemChat || !!report.isPinned || reportAttributes?.[report?.reportID]?.requiresAttention;
249
250
if (isHidden && !shouldOverrideHidden) {
251
return {shouldDisplay: false};
0 commit comments