renaming Hospitalization to Hospitalizations

This commit is contained in:
Frank Knoll
2024-04-23 18:14:22 +02:00
parent a2d4c356be
commit dd01d7cd18
10 changed files with 25 additions and 42 deletions

View File

@@ -33,7 +33,7 @@ class AdverseReactionReportsChartView {
'Deaths',
'Disabilities',
'Life Threatening Illnesses',
'Hospitalization',
'Hospitalizations',
'Other Adverse Events'
],
datasets: [{
@@ -43,8 +43,8 @@ class AdverseReactionReportsChartView {
ADRDescr['Deaths'],
ADRDescr['Disabilities'],
ADRDescr['Life Threatening Illnesses'],
ADRDescr['Hospitalization'],
ADRDescr['Adverse Reaction Reports'] - (ADRDescr['Deaths'] + ADRDescr['Disabilities'] + ADRDescr['Life Threatening Illnesses'] + ADRDescr['Hospitalization'])
ADRDescr['Hospitalizations'],
ADRDescr['Adverse Reaction Reports'] - (ADRDescr['Deaths'] + ADRDescr['Disabilities'] + ADRDescr['Life Threatening Illnesses'] + ADRDescr['Hospitalizations'])
],
backgroundColor: '#1a73e8'
}]

View File

@@ -50,7 +50,7 @@ class BatchCodeTableInitializer {
this.#getColumnIndex('Deaths'),
this.#getColumnIndex('Disabilities'),
this.#getColumnIndex('Life Threatening Illnesses'),
this.#getColumnIndex('Hospitalization'),
this.#getColumnIndex('Hospitalizations'),
this.#getColumnIndex('Severe reports'),
this.#getColumnIndex('Lethality')
]
@@ -110,7 +110,7 @@ class BatchCodeTableInitializer {
return 3;
case 'Life Threatening Illnesses':
return 4;
case 'Hospitalization':
case 'Hospitalizations':
return 5;
case 'Company':
return 6;

View File

@@ -58,7 +58,7 @@
<th>Deaths</th>
<th>Disabilities</th>
<th>Life Threatening Illnesses</th>
<th>Hospitalization</th>
<th>Hospitalizations</th>
<th>Company</th>
<th>Severe reports</th>
<th>Lethality</th>