Skip to content
Snippets Groups Projects
Commit 5802bcca authored by Mark Harding's avatar Mark Harding
Browse files

(chore): rework the stats

parent b9e60e86
No related branches found
No related tags found
Loading
......@@ -88,16 +88,16 @@
<h4>Last 30 days</h4>
<div class="m-layout__row">
<div class="m-layout__cell">
<b>{{ stats.reported }}</b>
<span>Content Reported</span>
<b>{{ stats.actioned | number }}</b>
<span>Actions Taken by Minds</span>
</div>
<div class="m-layout__cell">
<b>{{ stats.appealedPct | number }}%</b>
<span>Appealed</span>
<b>{{ stats.appealed | number }}</b>
<span>Appeals</span>
</div>
<div class="m-layout__cell">
<b>{{ stats.upheldPct | number }}%</b>
<span>Upheld by Community Jury</span>
<b>{{ stats.overturned | number }}</b>
<span>Actions Overturned</span>
</div>
</div>
</div>
......
......@@ -25,8 +25,13 @@ export class ReportsMarketingComponent {
stats = {
reported: 0,
reportedPct: 0,
actioned: 0,
actionedPct: 0,
appealedPct: 0,
appealed: 0,
upheldPct: 0,
upheld: 0,
overturned: 0,
};
reasons = REASONS_LIST;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment