Skip to content

Commit 1a19477

Browse files
committed
updated strings
1 parent 079ffc7 commit 1a19477

File tree

1 file changed

+5
-18
lines changed

1 file changed

+5
-18
lines changed

src/stores.js

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ export const sensors = readable(
1414
{
1515
name: 'Doctor Visits',
1616
id: 'doctor-visits',
17-
tooltipText: 'Percentage of doctor visits that are due to COVID-like Symptoms',
18-
mapTitleText: 'Percentage of doctor visits that are due to COVID-like Symptoms',
19-
chartTitleText: 'Percentage of doctor visits that are due to COVID-like Symptoms',
17+
tooltipText: 'Percentage of doctor visits that are due to COVID-like symptoms',
18+
mapTitleText: 'Percentage of doctor visits that are due to COVID-like symptoms',
19+
chartTitleText: 'Percentage of doctor visits that are due to COVID-like symptoms',
2020
yAxis: 'Percentage',
2121
format: 'percent',
22-
signal: 'smoothed_adj_cli',
22+
signal: 'smoothed_cli',
2323
levels: ['county', 'msa', 'state'],
2424
official: false,
2525
},
@@ -59,18 +59,6 @@ export const sensors = readable(
5959
levels: ['msa', 'state'],
6060
official: false,
6161
},
62-
{
63-
name: 'Consensus',
64-
id: 'consensus',
65-
tooltipText: 'Consensus Score of All Indicators Available for This Date',
66-
mapTitleText: 'Consensus Score of All Indicators Available for This Date',
67-
chartTitleText: 'Consensus Score of All Indicators Available for This Date',
68-
yAxis: 'Score (arbitrary scale)',
69-
format: 'raw',
70-
signal: 'consensus_day',
71-
levels: ['county', 'msa', 'state'],
72-
official: false,
73-
},
7462
{
7563
name: 'Cases (JHU)',
7664
id: 'jhu-csse',
@@ -96,7 +84,6 @@ export const sensors = readable(
9684
official: true,
9785
},
9886
],
99-
10087
(set) => {
10188
let sensorsOption = urlParams.get('sensors');
10289
sensorsOption ? set(JSON.parse(decodeURIComponent(sensorsOption))) : '';
@@ -142,7 +129,7 @@ export const mapFirstLoaded = writable(false);
142129
export const currentDataReadyOnMap = writable(false);
143130
export const customDataView = readable(true, (set) => (urlParams.get('sensors') ? set(true) : set(false)));
144131

145-
export const currentSensor = writable('doctor-visits-smoothed_adj_cli', (set) => {
132+
export const currentSensor = writable('doctor-visits-smoothed_cli', (set) => {
146133
let sensor = urlParams.get('sensor');
147134
sensor ? set(sensor) : '';
148135
return () => '';

0 commit comments

Comments
 (0)