replacing column "Summary" with columns "Doses Shipped", "Statistical Number of Adverse Reaction Reports" and "Statistical Number of Adverse Reaction Reports (per 100,000)"
This commit is contained in:
@@ -44,7 +44,9 @@
|
||||
<th>Provider</th>
|
||||
<th>ZIP Code</th>
|
||||
<th>Lot Number</th>
|
||||
<th>Summary</th>
|
||||
<th>Doses Shipped</th>
|
||||
<th>Statistical Number of Adverse Reaction Reports</th>
|
||||
<th>Statistical Number of Adverse Reaction Reports (per 100,000)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
|
||||
@@ -23,11 +23,6 @@ class VaccineDistributionByZipcodeTableInitializer {
|
||||
deferRender: true,
|
||||
columnDefs:
|
||||
[
|
||||
{
|
||||
searchable: false,
|
||||
orderable: false,
|
||||
targets: [this.#getColumnIndex('Summary')]
|
||||
},
|
||||
{
|
||||
searchable: true,
|
||||
targets: [
|
||||
@@ -48,8 +43,12 @@ class VaccineDistributionByZipcodeTableInitializer {
|
||||
return 1;
|
||||
case 'Lot Number':
|
||||
return 2;
|
||||
case 'Summary':
|
||||
case 'Doses Shipped':
|
||||
return 3;
|
||||
case 'Statistical Number of Adverse Reaction Reports':
|
||||
return 4;
|
||||
case 'Statistical Number of Adverse Reaction Reports (per 100,000)':
|
||||
return 5;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user