Skip to content

Commit

Permalink
🐛 Switches recovered and deaths in C19 widget
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Jan 26, 2022
1 parent 488cfc1 commit 5570cd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Widgets/CovidStats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
</div>
<div class="stat-wrap">
<span class="lbl">Total Recovered</span>
<span class="val recovered">{{ basicStats.deaths | numberFormat }}</span>
<span class="val recovered">{{ basicStats.recovered | numberFormat }}</span>
</div>
<div class="stat-wrap">
<span class="lbl">Total Deaths</span>
<span class="val deaths">{{ basicStats.recovered | numberFormat }}</span>
<span class="val deaths">{{ basicStats.deaths | numberFormat }}</span>
</div>
</div>
</div>
Expand Down

0 comments on commit 5570cd2

Please sign in to comment.