Skip to content

Commit

Permalink
fix lhn boldness issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FitseTLT committed Feb 20, 2024
1 parent a9d1683 commit 617910c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/SidebarUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ function getOptionData({
result.policyID = report.policyID;
result.stateNum = report.stateNum;
result.statusNum = report.statusNum;
result.isUnread = ReportUtils.isUnread(report);
result.isUnread = ReportUtils.isUnread(report) && !!report.lastActorAccountID;
result.isUnreadWithMention = ReportUtils.isUnreadWithMention(report);
result.hasDraftComment = report.hasDraft;
result.isPinned = report.isPinned;
Expand Down

0 comments on commit 617910c

Please sign in to comment.