Skip to content

Commit

Permalink
Merge pull request #2581 from GreenAsJade/dont_show_count_to_cms
Browse files Browse the repository at this point in the history
Don't show report count to cms ... they don't have a daily limit.
  • Loading branch information
anoek authored Feb 14, 2024
2 parents 4572234 + 458c138 commit 027d7ae
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,11 @@ export function IncidentReportTracker(): JSX.Element | null {
className={`fa fa-exclamation-triangle ${normal_ct > 0 ? "active" : ""}`}
ref={incident_report_indicator}
/>
<span className={`count ${normal_ct > 0 ? "active" : ""}`}>{normal_ct}</span>
{user.is_moderator && (
<span className={`count ${normal_ct > 0 ? "active" : ""}`}>
{normal_ct}
</span>
)}
</div>
)}
{show_incident_list && (
Expand Down

0 comments on commit 027d7ae

Please sign in to comment.