Skip to content

Commit 711cf64

Browse files
committed
Disabled recovery, will soon add Testing (CSSEGISandData/COVID-19#1250)
1 parent 9070704 commit 711cf64

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

store/mutations.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export default {
6767
const series = _ => {
6868
const timelineConfirmed = Object.entries(result.timelines.confirmed.timeline).map(o => o)
6969
const timelineDeaths = Object.entries(result.timelines.deaths.timeline).map(o => o)
70-
const timelineRecovered = Object.entries(result.timelines.recovered.timeline).map(o => o)
70+
// const timelineRecovered = Object.entries(result.timelines.recovered.timeline).map(o => o)
7171
return [
7272
{
7373
name: 'Confirmed',
@@ -76,11 +76,11 @@ export default {
7676
{
7777
name: 'Deaths',
7878
data: timelineDeaths
79-
},
80-
{
81-
name: 'Recovered',
82-
data: timelineRecovered
8379
}
80+
// {
81+
// name: 'Recovered',
82+
// data: timelineRecovered
83+
// }
8484
]
8585
}
8686
const timeline = () => {

0 commit comments

Comments
 (0)