Skip to content

Commit

Permalink
Merge pull request #30830 from tienifr/fix/30824
Browse files Browse the repository at this point in the history
[CP Staging] fix: Green dot for money request is still displayed in spite of having deleted the workspace
  • Loading branch information
Beamanator authored Nov 3, 2023
2 parents c0657fa + 747b7d2 commit 9d99c41
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/libs/ReportUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -1422,6 +1422,10 @@ function requiresAttentionFromCurrentUser(option, parentReportAction = {}) {
return false;
}

if (isArchivedRoom(option)) {
return false;
}

if (isArchivedRoom(getReport(option.parentReportID))) {
return false;
}
Expand Down

0 comments on commit 9d99c41

Please sign in to comment.