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

(cherry picked from commit 9d99c41)
  • Loading branch information
Beamanator authored and OSBotify committed Nov 3, 2023
1 parent 523f408 commit 70b9761
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 @@ -1415,6 +1415,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 70b9761

Please sign in to comment.